We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 176841a commit fec2274Copy full SHA for fec2274
.github/workflows/validate.yml
@@ -3,7 +3,7 @@ name: Validate JSONs
3
on:
4
pull_request_target:
5
paths:
6
- - '/_data/collection.json'
+ - '_data/collection.json'
7
workflow_dispatch:
8
9
permissions:
@@ -29,7 +29,7 @@ jobs:
29
npm install -g ajv-cli
30
- name: Run schema check
31
run: |
32
- ajv validate -s schema.json -d /_data/collection.json --all-errors --errors=text --verbose=true -c=ajv-formats 1>> log.txt 2>&1
+ ajv validate -s schema.json -d _data/collection.json --all-errors --errors=text --verbose=true -c=ajv-formats 1>> log.txt 2>&1
33
- name: Show Validation Issues
34
if: failure()
35
run: cat log.txt
0 commit comments