From 2b911851537a92c1d80aacea014970357047cb15 Mon Sep 17 00:00:00 2001 From: Ludovic Date: Sat, 30 Dec 2023 12:40:52 +0100 Subject: [PATCH] Update node version and remove ignore flag in JSON schema validation --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c07c7af602e..558097544f4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [21.x] steps: - uses: actions/checkout@v2 @@ -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