Skip to content

Commit e65ced6

Browse files
committed
fix: ensure node22 in action workflow
1 parent cb4cc18 commit e65ced6

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ${{ matrix.os }}
1616
strategy:
1717
matrix:
18-
node-version: [ 20.x, 22.x, 24.x ]
18+
node-version: [ 22.x, 24.x ]
1919
os: [ windows-latest, ubuntu-latest, macOS-latest ]
2020

2121
# Go
@@ -40,14 +40,7 @@ jobs:
4040
- name: Install
4141
run: npm install
4242

43-
- name: Test (Node.js <= 16.x)
44-
if: matrix.node-version <= '16.x'
45-
run: npm run test:nolint
46-
env:
47-
CI: true
48-
4943
- name: Test
50-
if: matrix.node-version > '16.x'
5144
run: npm test
5245
env:
5346
CI: true

0 commit comments

Comments
 (0)