Skip to content

chore: fix validation #4

chore: fix validation

chore: fix validation #4

Workflow file for this run

name: CI
on:
push:
branches: [ 'main' ]
paths-ignore:
- '**.md' # Don't run CI on markdown changes.
pull_request:
branches: [ 'main', 'feat/**' ]
paths-ignore:
- '**.md'
jobs:
lints:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate JSON Formatting
run: |
./scripts/ci/format-json.sh
if ! git diff-index --quiet HEAD; then
git diff
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
- name: Validate all SDKs are represented in data files
run: |
./scripts/ci/sdk-consistency.sh