feat: marketplace UI overhaul with main security fixes #1597
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@v6 | |
| - uses: oven-sh/setup-bun@e3914758a49697077f7bcd190d36582a61667aad | |
| with: | |
| bun-version: 1.3.10 | |
| - 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: ClawHub CLI Verify | |
| run: bun run --cwd packages/clawhub verify | |
| - name: Typecheck | |
| run: | | |
| bunx tsc --noEmit | |
| bunx tsc -p packages/schema/tsconfig.json --noEmit | |
| bunx tsc -p packages/clawhub/tsconfig.json --noEmit | |
| - name: Build | |
| run: bun run build |