chore(deps-dev): bump typescript from 5.9.3 to 6.0.2 in /apps/web #286
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: | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: コードを取得 | |
| uses: actions/checkout@v4 | |
| - name: Node.js をセットアップ | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: 依存関係をインストール | |
| run: npm ci | |
| - name: ESLint を実行 | |
| run: npm run lint:web | |
| test: | |
| name: Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: コードを取得 | |
| uses: actions/checkout@v4 | |
| - name: Node.js をセットアップ | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: 依存関係をインストール | |
| run: npm ci | |
| - name: テストを実行 | |
| run: npm test |