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 bcd6b3b commit 467f920Copy full SHA for 467f920
.github/workflows/test.yml
@@ -17,17 +17,17 @@ jobs:
17
name: Run test & lint
18
runs-on: Ubuntu-20.04
19
steps:
20
- - uses: actions/checkout@v2
21
- - uses: actions/setup-node@v2
+ - uses: actions/checkout@v4
+ - uses: actions/setup-node@v4
22
with:
23
- node-version: '16.x'
24
- - uses: actions/cache@v2
+ node-version: '18.x'
+ - uses: actions/cache@v4
25
id: yarn-cache
26
27
path: |
28
node_modules
29
*/*/node_modules
30
- key: ${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
+ key: node18-${{ runner.os }}-install-${{ hashFiles('**/yarn.lock') }}
31
- run: yarn install
32
if: ${{ steps.yarn-cache.outputs.cache-hit != 'true' }}
33
0 commit comments