Skip to content

Commit

Permalink
chore: update json format check
Browse files Browse the repository at this point in the history
  • Loading branch information
cwaldren-ld committed Mar 6, 2024
1 parent 76d5f1d commit af4e7e8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@ jobs:
- name: Validate JSON Formatting
run: |
./scripts/ci/format-json.sh
git diff-index --quiet HEAD --
if ! git diff-index --quiet HEAD; then
echo "Run ./scripts/ci/format-json.sh to reformat the JSON data"
exit 1
fi
- name: Validate JSON schemas
run: |
./scripts/ci/check-json-schemas.sh
Expand Down

0 comments on commit af4e7e8

Please sign in to comment.