We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d98e001 commit 525fb72Copy full SHA for 525fb72
.github/workflows/build.yml
@@ -29,20 +29,21 @@ jobs:
29
node-version: '22'
30
31
- name: Setup pnpm
32
- uses: pnpm/action-setup@v2
+ uses: pnpm/action-setup@v3
33
with:
34
version: 10
35
run_install: false
36
37
- name: Get pnpm store directory
38
+ id: pnpm-store
39
shell: bash
40
run: |
41
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
42
43
- name: Setup pnpm cache
44
uses: actions/cache@v3
45
- path: ${{ env.STORE_PATH }}
46
+ path: ${{ steps.pnpm-store.outputs.STORE_PATH }}
47
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
48
restore-keys: |
49
${{ runner.os }}-pnpm-store-
0 commit comments