Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,20 @@ jobs:
path: versions.json
if-no-files-found: error

schema-check:
Comment thread
DilumAluthge marked this conversation as resolved.
# This CI job just makes sure that `schema.json` is a valid JSON schema.
# This CI job does NOT validate `versions.json` against `schema.json`.
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # 6.0.2
Comment thread
DilumAluthge marked this conversation as resolved.
with:
persist-credentials: false

- run: npx -p ajv-cli@3.3.0 ajv compile -s schema.json

upload-to-s3:
needs: [package-tests, full-test]
needs: [package-tests, full-test, schema-check]
if: github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
timeout-minutes: 60
Expand Down
Loading