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 58163ca commit 3119c76Copy full SHA for 3119c76
.github/workflows/ci.yml
@@ -14,22 +14,13 @@ jobs:
14
os: "macos-11"
15
runs-on: ${{ matrix.os }}
16
steps:
17
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v3
18
19
- - uses: actions/setup-node@v1
+ - uses: actions/setup-node@v3
20
with:
21
- node-version: 16
22
-
23
- - name: Get npm cache directory
24
- id: npm-cache
25
- run: |
26
- echo "::set-output name=dir::$(npm config get cache)"
27
- - uses: actions/cache@v2
28
- with:
29
- path: ${{ steps.npm-cache.outputs.dir }}
30
- key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
31
- restore-keys: |
32
- ${{ runner.os }}-node-
+ node-version: 18
+ check-latest: true
+ cache: 'npm'
33
34
- run: npm ci
35
0 commit comments