Agent edit-loop upgrade: reliability, discoverability, prescriptive errors, atomic + corrective writes #45
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: | |
| pull_request: | |
| jobs: | |
| verify: | |
| name: Lint, build, typecheck & test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm lint | |
| - run: pnpm build | |
| - run: pnpm typecheck | |
| - run: pnpm test | |
| - run: pnpm validate:templates | |
| - run: pnpm e2e | |
| # Independent of the verify job: catches Dockerfile rot on PRs (amd64, no push). | |
| docker-build: | |
| name: Docker image build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: docker/setup-buildx-action@v3 | |
| - run: docker build . -t openislands:ci |