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 f2d3ae2 commit 401fa09Copy full SHA for 401fa09
1 file changed
.github/workflows/test.yml
@@ -41,5 +41,16 @@ jobs:
41
- uses: pnpm/action-setup@v2
42
with:
43
version: latest
44
+ - name: Get pnpm store directory
45
+ shell: bash
46
+ run: |
47
+ echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
48
+ - uses: actions/cache@v3
49
+ name: Setup pnpm cache
50
+ with:
51
+ path: ${{ env.STORE_PATH }}
52
+ key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
53
+ restore-keys: |
54
+ ${{ runner.os }}-pnpm-store-
55
- name: Build and test node
56
run: deno task npm 0.0.0
0 commit comments