docs: cross-reference openagentlock/skills #11
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: | |
| branches: [main] | |
| push: | |
| branches: [main] | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - name: Install tools deps | |
| working-directory: tools | |
| run: bun install --frozen-lockfile || bun install | |
| - name: Validate rules against schema | |
| working-directory: tools | |
| run: bun run validate | |
| - name: Build index (smoke test only) | |
| working-directory: tools | |
| run: bun run build-index |