Fix integration status test fixtures #6
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: Quality Gates | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: read | |
| jobs: | |
| runtime: | |
| name: Runtime and Provider Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Set up Go | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.24.1' | |
| - name: Set up Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: npm | |
| cache-dependency-path: desktop/frontend/package-lock.json | |
| - name: Install runtime tooling | |
| run: sudo apt-get update && sudo apt-get install -y ripgrep | |
| - name: CLI tests | |
| run: | | |
| cd cli | |
| go test ./... | |
| - name: Shared runtime tests | |
| run: | | |
| cd shared | |
| go test ./... | |
| - name: Harness tests | |
| run: | | |
| cd harness | |
| go test ./... | |
| - name: Frontend dependencies | |
| run: | | |
| cd desktop/frontend | |
| npm ci | |
| - name: Frontend tests | |
| run: | | |
| cd desktop/frontend | |
| npm run test:run | |
| - name: Frontend build | |
| run: | | |
| cd desktop/frontend | |
| npm run build | |
| - name: Desktop runtime tests | |
| run: | | |
| cd desktop | |
| go test . ./agent/... ./boatmanmode ./mcp | |
| - name: Docs gate | |
| run: ./scripts/agent-docs-check | |
| - name: Defrag gate | |
| run: ./scripts/agent-defrag --strict |