Remove forward-compatibility promise and all reserved & private synta… #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate test data | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- test/** | |
pull_request: | |
branches: '**' | |
paths: | |
- test/** | |
jobs: | |
run_all: | |
name: Validate tests using schema | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: Install CLI tool for JSON Schema validation | |
run: npm install --global ajv-cli | |
- name: Validate tests using the latest schema version | |
run: > | |
ajv validate --spec=draft2020 | |
-s $(ls -1v schemas/*/*schema.json | tail -1) | |
-d 'tests/**/*.json' | |
working-directory: ./test |