Add CrawlProof ad units #12
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: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # No `version:` here — package.json's `packageManager` field already | |
| # pins pnpm, and specifying both makes the action refuse to run. | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| # The board runs .ts unbuilt through type stripping, which needs 24. | |
| node-version: 24 | |
| cache: pnpm | |
| # --ignore-scripts because nothing here needs a postinstall, and a | |
| # dependency that suddenly wants one should fail review, not CI. | |
| - run: pnpm install --frozen-lockfile --ignore-scripts | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| - name: Test | |
| run: pnpm test | |
| - name: Boot the board and check it serves | |
| run: | | |
| node packages/db/src/seed.ts | |
| node apps/server/src/index.ts & | |
| for i in $(seq 1 40); do | |
| curl -sf -o /dev/null http://localhost:3000/healthz && break | |
| sleep 0.5 | |
| done | |
| curl -sf http://localhost:3000/healthz | |
| curl -sf -o /dev/null -w '%{http_code}\n' http://localhost:3000/ | |
| env: | |
| TSBB_DATABASE_URL: file:./data/ci.db | |
| TSBB_SESSION_SECRET: ci-only-not-a-real-secret | |
| TSBB_BASE_URL: http://localhost:3000 |