Skip to content

Commit eedf4aa

Browse files
committed
dropped support for Node v18
in the process, adjusted CI's Node support matrix
1 parent dae1cd5 commit eedf4aa

File tree

2 files changed

+7
-8
lines changed

2 files changed

+7
-8
lines changed

.github/workflows/tests.yaml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,18 @@
1-
name: tests
21
on:
32
- push
3+
44
jobs:
5-
build:
5+
test:
66
runs-on: ubuntu-latest
77
strategy:
88
matrix:
99
node-version:
10-
- 18.x
1110
- 20.x
12-
- 22.x
13-
- 23.x
11+
- 24.x
12+
- latest
1413
steps:
15-
- uses: actions/checkout@v4
16-
- uses: actions/setup-node@v4
14+
- uses: actions/checkout@v5
15+
- uses: actions/setup-node@v6
1716
with:
1817
node-version: ${{ matrix.node-version }}
1918
- run: npm install-test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"lint": "eslint --cache ./lib ./bin/* ./test ./test/bin/* && echo ✓"
2626
},
2727
"engines": {
28-
"node": ">= 18"
28+
"node": ">= 20"
2929
},
3030
"dependencies": {
3131
"browserslist": "~4.24.4",

0 commit comments

Comments
 (0)