Skip to content

Commit

Permalink
feat(node-versions): dropped support for node versions below v18
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node v18 is now the minimum required node version
  • Loading branch information
travi authored and gr2m committed Jan 13, 2023
1 parent fd490b2 commit aff3574
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ jobs:
strategy:
matrix:
node-version:
- 14.17
- 16.0.0
- 17.0.0
- 18.0.0
- 19
os:
- ubuntu-latest
runs-on: "${{ matrix.os }}"
Expand All @@ -27,7 +25,7 @@ jobs:
with:
node-version: "${{ matrix.node-version }}"
cache: npm
- run: npm ci
- run: npm clean-install
- run: "npm run test:ci"
test:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"xo": "0.36.1"
},
"engines": {
"node": ">=16 || ^14.17"
"node": ">=18"
},
"files": [
"lib",
Expand Down

0 comments on commit aff3574

Please sign in to comment.