Clean up e2e temp dirs and cap dump directory size #387
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: | |
| concurrency: | |
| group: ci-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v6 | |
| - uses: jdx/mise-action@e6a8b3978addb5a52f2b4cd9d91eafa7f0ab959d # v4 | |
| - run: bun install --frozen-lockfile | |
| - run: bun run types | |
| - run: bun run build | |
| - run: bun run --cwd packages/opencode smoke:tui | |
| env: | |
| TUI_SMOKE_SKIP_BUILD: "1" | |
| - run: bun run test | |
| - run: npm install -g opencode-ai@1.17.13 | |
| - run: bun run test:e2e | |
| - run: bun run format:check | |
| - run: bun run lint |