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 5414f72 commit 97aa2c0Copy full SHA for 97aa2c0
.github/workflows/nodejs.yml
@@ -22,13 +22,13 @@ jobs:
22
test_and_lint:
23
runs-on: ubuntu-latest
24
steps:
25
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
26
27
- - uses: actions/cache@master
+ - uses: actions/cache@v3
28
id: node_modules_cache
29
with:
30
path: node_modules
31
- key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
+ key: ${{ runner.os }}-yarn-${{ hashFiles('./yarn.lock') }}
32
33
- run: yarn install --frozen-lockfile
34
if: steps.node_modules_cache.outputs.cache-hit != 'true'
0 commit comments