Skip to content

Commit

Permalink
feat(node-version): raised the minimum required version to v14.17 (#170)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: the minimum required version of node is now v14.17
  • Loading branch information
travi committed Sep 22, 2021
1 parent 8f008ce commit 5cf74e4
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 40 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
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -25,6 +24,8 @@ jobs:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- name: Ensure dependencies are compatible with the version of node
run: npx ls-engines
- run: npm run test:ci
test:
runs-on: ubuntu-latest
Expand Down
70 changes: 36 additions & 34 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -26,13 +26,13 @@
"clear-module": "4.1.1",
"codecov": "3.8.3",
"nyc": "15.1.0",
"semantic-release": "17.4.7",
"semantic-release": "18.0.0",
"sinon": "11.1.2",
"tempy": "1.0.1",
"xo": "0.28.3"
},
"engines": {
"node": ">=10.18"
"node": ">=14.17"
},
"files": [
"lib",
Expand Down Expand Up @@ -61,7 +61,7 @@
"all": true
},
"peerDependencies": {
"semantic-release": ">=15.8.0 <18.0.0"
"semantic-release": ">=18.0.0"
},
"prettier": {
"printWidth": 120,
Expand Down

0 comments on commit 5cf74e4

Please sign in to comment.