We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f740390 commit 83e77b0Copy full SHA for 83e77b0
1 file changed
.github/workflows/nodejs.yml
@@ -5,25 +5,24 @@ name: Node.js CI
5
6
on:
7
push:
8
- branches: [ master ]
+ branches: [master]
9
pull_request:
10
11
12
jobs:
13
build:
14
-
15
runs-on: ubuntu-latest
16
17
strategy:
18
matrix:
19
- node-version: [16.x]
+ node-version: [24.x]
20
21
steps:
22
- - uses: actions/checkout@v3
23
- - name: Use Node.js ${{ matrix.node-version }}
24
- uses: actions/setup-node@v3
25
- with:
26
- node-version: ${{ matrix.node-version }}
27
- - run: npm install
28
- - run: npm run build
29
- - run: npm run test
+ - uses: actions/checkout@v3
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v6
+ with:
+ node-version: ${{ matrix.node-version }}
+ - run: npm install
+ - run: npm run build
+ - run: npm run test
0 commit comments