-
Notifications
You must be signed in to change notification settings - Fork 150
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build!: bump minimun Node.JS version to Node 16.18
Bump the minimum version of Node.JS to Node v16.18. Node v14, v15, v17, v19 are all no longer being maintained, see https://github.com/nodejs/release#release-schedule Node v16.18 was picked as the minimum required Node.JS version, since that's the most commonly available Node.JS version in OS package repos, see https://repology.org/project/nodejs/versions BREAKING CHANGE: The minimum supported version of NodeJS is now 16.18, 18.x, or >= 20.x. NodeJS v14, v15, v17, and v19 are no longer supported.
- Loading branch information
1 parent
119f517
commit 959f032
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,10 +10,10 @@ jobs: | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 16.18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14.x' | ||
node-version: '16.18' | ||
- run: npm install | ||
- run: git config --global user.email "[email protected]" && git config --global user.name "Test Build" | ||
- run: npm test | ||
|
@@ -26,10 +26,10 @@ jobs: | |
steps: | ||
- run: git config --global core.autocrlf false | ||
- uses: actions/checkout@v3 | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 16.18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14.x' | ||
node-version: '16.18' | ||
- run: npm install | ||
- run: git config --global user.email "[email protected]" && git config --global user.name "Test Build" | ||
- run: npm test | ||
|
@@ -44,10 +44,10 @@ jobs: | |
- uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
- name: Use Node.js 14.x | ||
- name: Use Node.js 16.18 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '14.x' | ||
node-version: '16.18' | ||
- run: npm install | ||
- run: npm run semantic-release | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters