This repository was archived by the owner on May 24, 2026. It is now read-only.
Clarify release integrity boundaries (#8) #89
This file contains hidden or 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: Validate Schemas | |
| on: | |
| push: | |
| branches: ["main"] | |
| tags-ignore: ["*"] | |
| pull_request: | |
| branches: ["main"] | |
| workflow_dispatch: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - run: npm ci | |
| - run: npm run validate:schemas | |
| - run: npm run validate:examples | |
| - run: npm run generate:checksums | |
| - run: git diff --exit-code checksums.txt |