Skip to content

Commit

Permalink
feat(actions): drop Node.js v12 support (#1253)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Node.js v12 is End-of-Life. The support is dropped.
  • Loading branch information
ybiquitous committed May 10, 2022
1 parent cab809e commit 44cfc56
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 @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ["12", "14", "16", "18"]
node-version: ["14", "16", "18"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
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 @@ -30,7 +30,7 @@
".husky/pre-commit"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
"node": "^14.13.1 || >=16.0.0"
},
"dependencies": {
"@commitlint/cli": "^16.2.4",
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 @@ -240,7 +240,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [\\"12\\", \\"14\\", \\"16\\", \\"18\\"]
node-version: [\\"14\\", \\"16\\", \\"18\\"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down

0 comments on commit 44cfc56

Please sign in to comment.