Skip to content

Commit

Permalink
Update node version and remove ignore flag in JSON schema validation
Browse files Browse the repository at this point in the history
  • Loading branch information
LudovicMalot committed Dec 30, 2023
1 parent 2b33d4b commit 2b91185
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [21.x]

steps:
- uses: actions/checkout@v2
Expand All @@ -25,7 +25,7 @@ jobs:
- name: Check JSON Schemas
run: |
npm install -g ajv-cli
ajv compile -s schemas/*.json -r schemas/ --missing-ref=ignore
ajv compile -s schemas/*.json -r schemas/
for schema in $(ls schemas); do
for file in $(find data -name "*.json"); do
ajv validate -s schemas/$schema -d $file || exit 1
Expand Down

0 comments on commit 2b91185

Please sign in to comment.