Skip to content

Commit

Permalink
feat: raise minimum version of Node to v14.17 (#248)
Browse files Browse the repository at this point in the history
Co-authored-by: João Pedro Henrique <joao.pedro.hsd@gmail.com>

BREAKING CHANGE: the minimum required version of node is now v14.17
  • Loading branch information
gr2m committed Sep 17, 2021
1 parent 5d7a717 commit 6eeaeb2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Expand Up @@ -13,9 +13,8 @@ jobs:
strategy:
matrix:
node-version:
- 10
- 12
- 14
- 14.17
- 16
os:
- ubuntu-latest
- macos-latest
Expand All @@ -28,6 +27,8 @@ jobs:
with:
node-version: "${{ matrix.node-version }}"
cache: npm
- name: Ensure dependencies are compatible with the version of node
run: echo 'engine-strict=true' >> .npmrc
- run: npm ci
- run: "npm run test:ci"
test:
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -38,7 +38,7 @@
"xo": "0.28.3"
},
"engines": {
"node": ">=10.18"
"node": ">=14.17"
},
"files": [
"lib",
Expand Down Expand Up @@ -70,7 +70,7 @@
"all": true
},
"peerDependencies": {
"semantic-release": ">=16.0.0 <18.0.0"
"semantic-release": ">=18.0.0-beta.1"
},
"prettier": {
"printWidth": 120,
Expand Down

0 comments on commit 6eeaeb2

Please sign in to comment.