chore: fix validation #9
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: 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: Format JSON | |
run: | | |
./scripts/ci/format-json.sh | |
- name: Ensure no formatting changes needed | |
run: git diff --exit-code | |
- 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 |