Test quoted false positive of incorrect capitalization #116
Workflow file for this run
This file contains hidden or 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 JSONs | |
| on: [pull_request] | |
| jobs: | |
| verify-json-validation: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Validate CTS against JSON Schema | |
| uses: cardinalby/schema-validator-action@v2 | |
| with: | |
| file: 'tests/**/*.json|cts.json' | |
| schema: 'cts.schema.json' |