We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce9132c commit 16e409bCopy full SHA for 16e409b
1 file changed
.github/workflows/build-ci.yml
@@ -66,13 +66,15 @@ jobs:
66
restore-keys: |
67
${{ runner.os }}-tauri-cli-
68
69
- - name: Cache node_modules
+ - name: Cache pnpm store and modules
70
uses: actions/cache@v4
71
with:
72
- path: node_modules
73
- key: ${{ runner.os }}-node-modules-${{ hashFiles('package-lock.json') }}
+ path: |
+ ~/.pnpm-store
74
+ node_modules
75
+ key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
76
- ${{ runner.os }}-node-modules-
77
+ ${{ runner.os }}-pnpm-
78
79
- name: Install Node Module
80
run: |
0 commit comments