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 c68d0ce commit 09f28e0Copy full SHA for 09f28e0
1 file changed
.github/workflows/ci.yml
@@ -44,7 +44,7 @@ jobs:
44
- name: Set up Node.js
45
uses: actions/setup-node@v6
46
with:
47
- node-version-file: '.nvmrc'
+ node-version-file: .nvmrc
48
cache: npm
49
50
- name: Get npm cache directory
@@ -57,12 +57,11 @@ jobs:
57
uses: actions/cache@v4
58
59
path: ${{ steps.npm-cache-dir.outputs.dir }}
60
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}-${{ hashFiles('.nvmrc') }}
61
restore-keys: |
62
${{ runner.os }}-node-
63
64
- name: Install Dependencies
65
- if: steps.npm-cache.outputs.cache-hit != 'true'
66
run: npm ci --include=dev
67
68
- name: Run unit tests
0 commit comments