Skip to content

Commit 0182f34

Browse files
committed
update node support to >=20.19
1 parent 7b6efd4 commit 0182f34

2 files changed

Lines changed: 2 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,14 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
17+
node-version: [20.x, 22.x, 24.x]
1818

1919
steps:
2020
- uses: actions/checkout@v4
2121
- uses: actions/setup-node@v4
2222
with:
2323
node-version: ${{ matrix.node-version }}
2424
cache: npm
25-
- run: npm i -g npm@7
26-
if: ${{ matrix.node-version == '10.x' || matrix.node-version == '12.x' || matrix.node-version == '14.x' }}
2725
- run: npm ci
2826
- run: npm run lint:js
2927
- run: npm test

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"release-plan": "^0.17.4"
4646
},
4747
"engines": {
48-
"node": "10.* || 12.* || >= 14"
48+
"node": ">= 20.19"
4949
},
5050
"publishConfig": {
5151
"registry": "https://registry.npmjs.org"

0 commit comments

Comments
 (0)