Skip to content

Commit

Permalink
feat: drop support for end of life node versions
Browse files Browse the repository at this point in the history
BREAKING-CHANGE: this package requires node version >= 20 from now on
  • Loading branch information
TheUnderScorer committed Mar 8, 2024
1 parent 0897493 commit ca3dee8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 19
node-version: 21

- name: Configure CI Git User
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [16, 17, 18, 19]
node: [20, 21]
steps:
- uses: actions/checkout@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
},
"license": "MIT",
"engines": {
"node": ">=14"
"node": ">=20"
},
"scripts": {
"typecheck": "tsc --noEmit -p tsconfig.base.json",
Expand Down

0 comments on commit ca3dee8

Please sign in to comment.