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 0d510aa commit 71e18e1Copy full SHA for 71e18e1
.github/workflows/ci.yml
@@ -13,23 +13,16 @@ jobs:
13
runs-on: ubuntu-latest
14
strategy:
15
matrix:
16
- node-version: ['12.x', '14.x', '16.x']
+ node-version: ['16.x', '18.x', '20.x']
17
18
steps:
19
- name: Checkout
20
- uses: actions/checkout@v1
+ uses: actions/checkout@v4
21
- name: Use Node.js ${{ matrix.node-version }}
22
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
23
with:
24
node-version: ${{ matrix.node-version }}
25
- - name: Cache modules
26
- uses: actions/cache@v1
27
- with:
28
- path: ~/.npm
29
- key: ${{ runner.OS }}-node-${{ hashFiles('package-lock.json') }}
30
- restore-keys: |
31
- ${{ runner.OS }}-node-
32
- ${{ runner.OS }}-
+ cache: 'npm'
33
- name: Install
34
run: npm ci
35
- name: Lint
0 commit comments