Skip to content

Commit

Permalink
fix: Minimum node version set to 16
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Minimun node version set to 16
  • Loading branch information
GabeDuarteM committed Jul 5, 2022
1 parent c3f3c77 commit 38f3bbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

strategy:
matrix:
node-version: [15.x, lts/*, latest]
node-version: [16.x, latest]

steps:
- name: Checkout code
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 15.x
node-version: 16.x

- name: Echo versions used
run: echo "node:" && node --version && echo "" && echo "npm:" && npm --version && echo "" && echo "yarn:" && yarn --version
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"license": "MIT",
"description": "Set of semantic-release plugins for publishing a Chrome extension release",
"engines": {
"node": ">=15"
"node": ">=16"
},
"keywords": [
"semantic-release",
Expand Down

0 comments on commit 38f3bbd

Please sign in to comment.