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 492dbcd commit 1ba4e57Copy full SHA for 1ba4e57
.github/workflows/nodejs.yml
@@ -7,23 +7,22 @@ on:
7
push:
8
branches: [main]
9
pull_request:
10
- branches: [main]
11
12
jobs:
13
build:
14
runs-on: ubuntu-latest
15
16
strategy:
17
matrix:
18
- node-version: [14, 16, 18]
+ node-version: [18, 20]
19
20
steps:
21
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v4
22
- name: Use Node.js ${{ matrix.node-version }}
23
- uses: actions/setup-node@v1
+ uses: actions/setup-node@v4
24
with:
25
node-version: ${{ matrix.node-version }}
26
- - run: npm install
+ - run: npm ci
27
- run: npm test
28
env:
29
CI: true
0 commit comments