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 2466d35 commit 36ef718Copy full SHA for 36ef718
.github/workflows/cp_dispatch.yml
@@ -28,14 +28,8 @@ jobs:
28
uses: actions/setup-node@v4
29
with:
30
node-version: ${{ env.NODE_JS_VERSION }}
31
-
32
- - name: Cache Node.js dependencies
33
- uses: actions/cache@v4
34
- with:
35
- path: utils/fe-version-validator/node_modules
36
- key: ${{ runner.os }}-node-${{ env.NODE_JS_VERSION }}-${{ hashFiles('utils/fe-version-validator/package-lock.json') }}
37
- restore-keys: |
38
- ${{ runner.os }}-node-${{ env.NODE_JS_VERSION }}-
+ cache: 'npm' # Auto-caches npm dependencies
+ cache-dependency-path: utils/fe-version-validator/package-lock.json
39
40
- name: Install Node.js dependencies
41
run: npm ci
0 commit comments