Skip to content

Commit aff3574

Browse files
travigr2m
authored andcommitted
feat(node-versions): dropped support for node versions below v18
BREAKING CHANGE: node v18 is now the minimum required node version
1 parent fd490b2 commit aff3574

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version:
16-
- 14.17
17-
- 16.0.0
18-
- 17.0.0
1916
- 18.0.0
17+
- 19
2018
os:
2119
- ubuntu-latest
2220
runs-on: "${{ matrix.os }}"
@@ -27,7 +25,7 @@ jobs:
2725
with:
2826
node-version: "${{ matrix.node-version }}"
2927
cache: npm
30-
- run: npm ci
28+
- run: npm clean-install
3129
- run: "npm run test:ci"
3230
test:
3331
runs-on: ubuntu-latest

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"xo": "0.36.1"
4848
},
4949
"engines": {
50-
"node": ">=16 || ^14.17"
50+
"node": ">=18"
5151
},
5252
"files": [
5353
"lib",

0 commit comments

Comments
 (0)