mirror of https://github.com/buster-so/buster.git
k lets try this
This commit is contained in:
parent
ec4262b87c
commit
5ae39a15b3
|
@ -20,10 +20,10 @@ jobs:
|
|||
with:
|
||||
fetch-depth: 2
|
||||
|
||||
- name: Setup pnpm
|
||||
uses: pnpm/action-setup@v4
|
||||
- name: Install pnpm
|
||||
uses: pnpm/action-setup@v2
|
||||
with:
|
||||
version: 9
|
||||
version: 9.15.0
|
||||
|
||||
- name: Setup Node.js
|
||||
uses: useblacksmith/setup-node@v5
|
||||
|
@ -31,6 +31,11 @@ jobs:
|
|||
node-version: 22
|
||||
cache: 'pnpm'
|
||||
|
||||
- name: Get pnpm store directory
|
||||
shell: bash
|
||||
run: |
|
||||
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
|
||||
|
||||
- name: Mount node_modules sticky disk
|
||||
uses: useblacksmith/stickydisk@v1
|
||||
with:
|
||||
|
@ -41,7 +46,7 @@ jobs:
|
|||
uses: useblacksmith/stickydisk@v1
|
||||
with:
|
||||
key: ${{ github.repository }}-pnpm-store
|
||||
path: ~/.local/share/pnpm/store
|
||||
path: ${{ env.STORE_PATH }}
|
||||
|
||||
- name: Mount Turbo cache sticky disk
|
||||
uses: useblacksmith/stickydisk@v1
|
||||
|
|
Loading…
Reference in New Issue