Skip to content

Commit 6759c60

Browse files
committed
undo accidental changes and actually pin @types/json-schema
1 parent 4ed4a89 commit 6759c60

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

.github/workflows/test.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
fail-fast: false
1010
matrix:
11-
node: [8, 9, 10, 12, 14, 15, 16]
11+
node: [4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16]
1212
name: Node ${{ matrix.node }}
1313
steps:
1414
- uses: actions/checkout@v2
@@ -18,6 +18,14 @@ jobs:
1818
with:
1919
node-version: ${{ matrix.node }}
2020

21+
- name: Upgrade Node <= 5 npm
22+
run: npm install -g npm@3
23+
if: ${{ matrix.node <= 5 }}
24+
25+
- name: Upgrade Node 7 npm
26+
run: npm install -g npm@6
27+
if: ${{ matrix.node == 7 }}
28+
2129
- run: npm install
2230

2331
- name: Setup

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
"@babel/preset-env": "7.10.4",
4040
"@typescript-eslint/eslint-plugin": "4.10.0",
4141
"@typescript-eslint/parser": "4.10.0",
42+
"@types/json-schema": "7.0.3",
4243
"@types/node": "16.11.23",
4344
"acquit": "1.x",
4445
"acquit-ignore": "0.1.x",

0 commit comments

Comments
 (0)