Disable tmux status bar on agent session creation #23
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: | |
| branches: [main] | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: "25.8.0" | |
| cache: "npm" | |
| cache-dependency-path: | | |
| package-lock.json | |
| web/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install web dependencies | |
| run: npm --prefix web ci | |
| - name: Type check | |
| run: npm run check | |
| - name: Lint | |
| run: npm run lint:web | |
| - name: Build | |
| run: npm run build |