chore(release): 馃敄 sync latest skill catalog and bump hub to 0.1.4 #24
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: gates | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| - 'codex/**' | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| env: | |
| SKILLS_BASE: ${{ github.workspace }}/testdata | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.9 | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Generate fixture catalog | |
| run: | | |
| mkdir -p .tmp | |
| bun run catalog:generate -- --workspace testdata/workspace.ci.json --include-local-paths --output .tmp/ci-catalog.json --no-readme-sync | |
| - name: Health check (fixture catalog) | |
| run: bun run health:check -- --catalog .tmp/ci-catalog.json | |
| - name: README sync check | |
| run: bun run readme:check | |
| - name: Security audit | |
| run: bun run security:audit -- --catalog .tmp/ci-catalog.json | |
| - name: Bootstrap dependency closure (fixture skill) | |
| run: ./bootstrap.sh --catalog .tmp/ci-catalog.json --only fixture-node-skill --source local --skip-install |