Skip to content

Commit

Permalink
feat(node-versions): raised the minimum required node version to v18.…
Browse files Browse the repository at this point in the history
…17 and dropped v19 support

BREAKING CHANGE: the minimum required node version is v18.17 and v19 is no longer supported
  • Loading branch information
travi committed Oct 20, 2023
1 parent 387a309 commit 61cbc50
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@ jobs:
strategy:
matrix:
node-version:
- 18.0.0
- 19
- 18.17.0
- 20.6.1
- 20
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
Expand Down
2 changes: 2 additions & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
v18

2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"prettier": "3.0.3"
},
"engines": {
"node": ">=18"
"node": "^18.17 || >=20.6.1"
},
"files": [
"index.js"
Expand Down

0 comments on commit 61cbc50

Please sign in to comment.