We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9f5287 commit b4ccdf6Copy full SHA for b4ccdf6
.github/workflows/deploy.yml
@@ -20,6 +20,18 @@ jobs:
20
with:
21
version: 8
22
23
+ - name: 📦 Get pnpm store path
24
+ id: pnpm-cache-path
25
+ run: echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
26
+
27
+ - name: ♻️ Cache dependencies
28
+ uses: actions/cache@v4
29
+ with:
30
+ path: ${{ steps.pnpm-cache-path.outputs.STORE_PATH }}
31
+ key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
32
+ restore-keys: |
33
+ ${{ runner.os }}-pnpm-
34
35
- name: 📥 Install Dependencies
36
run: pnpm install
37
0 commit comments