fix: セッション自身が作った PR の状態を番号で追跡する #256
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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| # Node version mirrors mise.toml (kept in sync manually). | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| cache: 'npm' | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Lint (Biome) | |
| run: npm run lint | |
| - name: Typecheck (tsc --noEmit) | |
| run: npm run typecheck | |
| - name: Test (vitest + coverage) | |
| run: npm test | |
| - name: Build (tsup) | |
| run: npm run build |