We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ff0c97 commit 39913cbCopy full SHA for 39913cb
.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
runs-on: "${{ matrix.os }}"
@@ -26,6 +25,8 @@ jobs:
26
25
with:
27
node-version: "${{ matrix.node-version }}"
28
cache: npm
+ - name: Ensure dependencies are compatible with the version of node
29
+ run: echo 'engine-strict=true' >> .npmrc
30
- run: npm ci
31
- run: "npm run test:ci"
32
test:
@@ -38,4 +39,4 @@ jobs:
38
39
node-version: 16
40
41
- - run: npm run lint
42
+ - run: npm run lint
package.json
@@ -40,7 +40,7 @@
"xo": "0.28.3"
},
"engines": {
43
- "node": ">=10.18"
+ "node": ">=14.17"
44
45
"files": [
46
"lib",
0 commit comments