Skip to content

Commit ebb5c36

Browse files
committed
Drop Node.js < 20 support and add Node.js 24 in CI
1 parent 44e8694 commit ebb5c36

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]
44

55
env:
66
FORCE_COLOR: 2
7-
NODE: 22 # The Node.js version to run lint on
7+
NODE: 24 # The Node.js version to run lint on
88

99
jobs:
1010
run:

.github/workflows/test.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [push, pull_request, workflow_dispatch]
44

55
env:
66
FORCE_COLOR: 2
7-
NODE_COV: 22 # The Node.js version to run coveralls on
7+
NODE_COV: 24 # The Node.js version to run coveralls on
88

99
jobs:
1010
test:
@@ -15,17 +15,17 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
os: [ubuntu-latest]
18-
node: [18, 20, 22]
19-
java: [17]
18+
node: [20, 22, 24]
19+
java: [25]
2020
architecture: [x64]
2121
include:
2222
- os: macos-latest
23-
node: 22
24-
java: 17
23+
node: 24
24+
java: 25
2525
architecture: x64
2626
- os: windows-latest
27-
node: 22
28-
java: 17
27+
node: 24
28+
java: 25
2929
architecture: x64
3030
- os: windows-latest
3131
node: 22

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"license": "MIT",
1515
"engines": {
16-
"node": ">=18"
16+
"node": ">=20"
1717
},
1818
"scripts": {
1919
"mocha": "mocha",

0 commit comments

Comments
 (0)