This repository was archived by the owner on May 24, 2026. It is now read-only.
Tighten public release surface: remove stale script, add integrator guide, release draft, expand examples, regen checksums #115
Workflow file for this run
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 validate:integrity | |
| - run: npm run generate:checksums | |
| - run: git diff --exit-code -- checksums.txt |