docs: drop mentions of the deleted agent-directory and agent-runtime … #3197
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: | |
| concurrency: | |
| group: ci-${{ github.event.pull_request.number || github.sha }} | |
| cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
| jobs: | |
| # Warms the bun install cache once so the parallel jobs below mostly | |
| # restore rather than reinstall from the network. | |
| setup: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-workbench | |
| typecheck: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-workbench | |
| - run: bun run typecheck | |
| lint: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-workbench | |
| - run: bun run lint | |
| - run: bun run fmt:check | |
| # A single fast pass over every workspace's tests. DB-gated suites | |
| # skip themselves when DATABASE_URL is unset — | |
| # see test/db-gate.ts — so this job needs no Postgres service. | |
| unit: | |
| needs: setup | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-workbench | |
| - run: bun run test |