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.
package.json
1 parent 6173119 commit e48be48Copy full SHA for e48be48
.github/workflows/nodejs.yml
@@ -32,9 +32,10 @@ jobs:
32
uses: actions/cache@v3
33
with:
34
path: node_modules
35
- key: nodeModules-${{ hashFiles('./package-lock.json') }}-${{ matrix.node-version }}
+ key: nodeModules-${{ hashFiles('./package.json') }}-${{ matrix.node-version }}
36
restore-keys: |
37
nodeModules-
38
+
39
- name: Install dependencies
40
if: steps.cache.outputs.cache-hit != 'true'
41
run: npm install
.github/workflows/release-insiders.yml
@@ -26,7 +26,7 @@ jobs:
26
27
28
29
- key: nodeModules-${{ hashFiles('**/package-lock.json') }}-${{ matrix.node-version }}
+ key: nodeModules-${{ hashFiles('**/package.json') }}-${{ matrix.node-version }}
30
31
0 commit comments