We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 99b4189 + a1144dc commit e75732aCopy full SHA for e75732a
.github/workflows/test.yml
@@ -18,9 +18,13 @@ jobs:
18
with:
19
node-version: ${{ matrix.node }}
20
21
- - name: Upgrade Node 5 npm
+ - name: Upgrade Node <= 5 npm
22
run: npm install -g npm@3
23
- if: ${{ matrix.node == 5 }}
+ if: ${{ matrix.node <= 5 }}
24
+
25
+ - name: Upgrade Node 7 npm
26
+ run: npm install -g npm@6
27
+ if: ${{ matrix.node == 7 }}
28
29
- run: npm install
30
package.json
@@ -39,6 +39,7 @@
39
"@babel/preset-env": "7.10.4",
40
"@typescript-eslint/eslint-plugin": "4.10.0",
41
"@typescript-eslint/parser": "4.10.0",
42
+ "@types/node": "16.11.23",
43
"acquit": "1.x",
44
"acquit-ignore": "0.1.x",
45
"acquit-require": "0.1.x",
0 commit comments