Skip to content

Commit

Permalink
feat!: remove Node.js 14 support (#1522)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node.js 14 support is removed since it's End-of-Life.

This change also adds Node.js 20 to the CI matrix.
  • Loading branch information
ybiquitous committed Apr 24, 2023
1 parent 83dee65 commit 72b7ace
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ["14", "16", "18"]
node-version: ["16", "18", "20"]
uses: ybiquitous/.github/.github/workflows/nodejs-test-reusable.yml@main
with:
node-version: ${{ matrix.node-version }}
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 @@ -29,7 +29,7 @@
".husky/pre-commit"
],
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"dependencies": {
"@commitlint/cli": "^17.6.1",
Expand Down
2 changes: 1 addition & 1 deletion test/__snapshots__/init.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: ["14", "16", "18"]
node-version: ["16", "18", "20"]
uses: ybiquitous/.github/.github/workflows/nodejs-test-reusable.yml@main
with:
node-version: \${{ matrix.node-version }}
Expand Down

0 comments on commit 72b7ace

Please sign in to comment.