feat: add skill file viewer #241
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: 1.3.6 | |
| - name: Install | |
| run: bun install --frozen-lockfile | |
| - name: Peer deps | |
| run: bun run check:peers | |
| - name: Lint | |
| run: bun run lint | |
| - name: Test | |
| run: bun run test | |
| - name: Coverage | |
| run: bun run coverage | |
| - name: Typecheck packages | |
| run: | | |
| bunx tsc -p packages/schema/tsconfig.json --noEmit | |
| bunx tsc -p packages/clawdhub/tsconfig.json --noEmit | |
| - name: Build | |
| run: bun run build |