Skip to content

Commit

Permalink
chore: Drop support for node.js v19 and v21
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Drop node.js v21 Support

These node.js versions are no longer supported. For more information see https://nodejs.dev/en/about/releases/
  • Loading branch information
sebbo2002 committed Aug 20, 2024
1 parent 724f5fd commit 2fff079
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
if: github.repository != 'sebbo2002/js-template' && (contains(toJson(github.event.commits.*.message), '[skip ci]') == false || github.ref == 'refs/heads/main')
strategy:
matrix:
node: [18.x, 20.x, current]
node: [18.x, 20.x, 22.x, current]
steps:
- name: ☁️ Checkout Project
uses: actions/checkout@v4
Expand Down
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 @@ -37,7 +37,7 @@
"typescript-eslint": "^8.0.0-alpha.41"
},
"engines": {
"node": ">=18.0.0"
"node": "18 || 20 || >=22.0.0"
},
"exports": {
"import": "./dist/lib/index.js",
Expand Down

0 comments on commit 2fff079

Please sign in to comment.