Skip to content

Commit

Permalink
chore!: drop support for Node 18 and 20
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for Node 18 and 20 and require Node 22 LTS or more recent
  • Loading branch information
thomasthiebaud committed Dec 8, 2024
1 parent 43e40d6 commit aae6e7c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
node-version: [22]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand All @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
node-version: [22]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20
v22
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 @@ -7,7 +7,7 @@
"fastify-schema-to-typescript": "./dist/src/cli.js"
},
"engines": {
"node": ">=18.0.0"
"node": ">=22.0.0"
},
"scripts": {
"prepare": "husky",
Expand Down

0 comments on commit aae6e7c

Please sign in to comment.