Fixed parser test #23
Workflow file for this run
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: Test file validation | |
on: | |
pull_request: | |
paths: | |
- "scripts/test-file-validation/**" | |
- "test/recipe_parser_tests/parser_test_files/**/*.json" | |
jobs: | |
validation: | |
name: Validate parser test files | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install ajv-cli | |
run: npm install -g ajv-cli | |
- name: Run validation scripts | |
run: bash scripts/test-file-validation/test-file-validation.sh |