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 af0735f commit 6b1721cCopy full SHA for 6b1721c
.github/workflows/smoke-tests.yml
@@ -21,6 +21,13 @@ jobs:
21
- uses: actions/setup-node@v4
22
with:
23
node-version: ${{ matrix.node }}
24
- cache: npm
+ - name: Get npm cache directory
25
+ id: npm-cache-dir
26
+ shell: bash
27
+ run: echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
28
+ - uses: actions/cache@v4
29
+ with:
30
+ key: ${{ matrix.runner }}-node-${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
31
+ path: ${{ steps.npm-cache-dir.outputs.dir }}
32
- run: npm ci
33
- run: npm run test-smoke
0 commit comments