fix: 詳細ビューのマウススクロールで文字入力される不具合を修正 + レイアウト改修 (#21) #48
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 |