Skip to content

Commit

Permalink
undo accidental changes and actually pin @types/json-schema
Browse files Browse the repository at this point in the history
  • Loading branch information
vkarpov15 committed Jun 22, 2023
1 parent 4ed4a89 commit 6759c60
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/test.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node: [8, 9, 10, 12, 14, 15, 16]
node: [4, 6, 8, 9, 10, 11, 12, 13, 14, 15, 16]
name: Node ${{ matrix.node }}
steps:
- uses: actions/checkout@v2
Expand All @@ -18,6 +18,14 @@ jobs:
with:
node-version: ${{ matrix.node }}

- name: Upgrade Node <= 5 npm
run: npm install -g npm@3
if: ${{ matrix.node <= 5 }}

- name: Upgrade Node 7 npm
run: npm install -g npm@6
if: ${{ matrix.node == 7 }}

- run: npm install

- name: Setup
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -39,6 +39,7 @@
"@babel/preset-env": "7.10.4",
"@typescript-eslint/eslint-plugin": "4.10.0",
"@typescript-eslint/parser": "4.10.0",
"@types/json-schema": "7.0.3",
"@types/node": "16.11.23",
"acquit": "1.x",
"acquit-ignore": "0.1.x",
Expand Down

0 comments on commit 6759c60

Please sign in to comment.