Update: v1.1.0-alpha #72
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.3 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Build | |
| run: bun run build | |
| - name: Typecheck | |
| run: bun run typecheck | |
| - name: Test | |
| run: bun run test | |
| - name: Validate schema assets | |
| run: bun run schema:validate | |
| - name: Check generated schema.org vocabulary | |
| run: bun run schema-org:check-generated | |
| - name: Check generated classification creation profiles | |
| run: bun run classifications:check-creation-profiles | |
| - name: Check generated predicate modules | |
| run: bun run predicates:check-generated | |
| - name: Guard supply-chain policy | |
| run: bun run guard:supply-chain | |
| - name: Dry-run package tarballs | |
| run: bun run pack:dry-run | |
| - name: Clean-room tarball smoke | |
| run: bun run smoke:tarballs |