We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f9cc61 commit 62078cdCopy full SHA for 62078cd
.github/workflows/node.js.yml
@@ -16,12 +16,14 @@ jobs:
16
- uses: actions/cache@v4
17
id: cache-node
18
with:
19
- path: node_modules
20
- key: ${{ hashFiles('package.json') }}
+ path: |
+ node_modules
21
+ example/node_modules
22
+ key: ${{ hashFiles('package.json', 'yarn.lock', 'example/package.json') }}
23
- run: corepack enable
24
- uses: actions/setup-node@v4
25
- node-version: 20
26
+ node-version: 24
27
- run: yarn install
28
if: steps.cache-node.outputs.cache-hit != 'true'
29
- run: yarn lint
0 commit comments