Skip to content

Commit 89242e2

Browse files
committed
ci update
1 parent 564132a commit 89242e2

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/node.js.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,28 +11,27 @@ on:
1111

1212
jobs:
1313
build:
14-
1514
runs-on: ubuntu-latest
1615

1716
strategy:
1817
matrix:
19-
node-version: [20.x, 22.x, 24.x]
18+
node-version: [16, 18, 20, 22, 24]
2019
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2120

2221
steps:
23-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v4
2423

2524
- name: Use Node.js ${{ matrix.node-version }}
26-
uses: actions/setup-node@v2
25+
uses: actions/setup-node@v4
2726
with:
2827
node-version: ${{ matrix.node-version }}
2928
cache: 'npm'
29+
3030
- run: npm ci
3131
- run: npm run test-ci
3232
- run: npm run coverage
3333

3434
- name: Coveralls GitHub Action
35-
uses: coverallsapp/github-action@1.1.3
35+
uses: coverallsapp/github-action@v2
3636
with:
3737
github-token: ${{ secrets.GITHUB_TOKEN }}
38-

0 commit comments

Comments
 (0)