We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7a717 commit 6eeaeb2Copy full SHA for 6eeaeb2
.github/workflows/test.yml
@@ -13,9 +13,8 @@ jobs:
13
strategy:
14
matrix:
15
node-version:
16
- - 10
17
- - 12
18
- - 14
+ - 14.17
+ - 16
19
os:
20
- ubuntu-latest
21
- macos-latest
@@ -28,6 +27,8 @@ jobs:
28
27
with:
29
node-version: "${{ matrix.node-version }}"
30
cache: npm
+ - name: Ensure dependencies are compatible with the version of node
31
+ run: echo 'engine-strict=true' >> .npmrc
32
- run: npm ci
33
- run: "npm run test:ci"
34
test:
package.json
@@ -38,7 +38,7 @@
38
"xo": "0.28.3"
39
},
40
"engines": {
41
- "node": ">=10.18"
+ "node": ">=14.17"
42
43
"files": [
44
"lib",
@@ -70,7 +70,7 @@
70
"all": true
71
72
"peerDependencies": {
73
- "semantic-release": ">=16.0.0 <18.0.0"
+ "semantic-release": ">=18.0.0-beta.1"
74
75
"prettier": {
76
"printWidth": 120,
0 commit comments