We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9be1198 commit f9bbb7cCopy full SHA for f9bbb7c
1 file changed
.github/workflows/deploy.yml
@@ -26,17 +26,12 @@ jobs:
26
uses: actions/setup-node@v4
27
with:
28
node-version: "22"
29
- cache: 'npm'
30
- name: Install pnpm
31
run: npm install -g pnpm@8
32
- - name: Get pnpm store directory
33
- shell: bash
34
- run: |
35
- echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
36
- name: Setup pnpm cache
37
uses: actions/cache@v3
38
39
- path: ${{ env.STORE_PATH }}
+ path: ~/.pnpm-store
40
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
41
restore-keys: |
42
${{ runner.os }}-pnpm-store-
0 commit comments