chore: upgrade to TypeScript 7 #14
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: Web CI | |
| on: | |
| push: | |
| branches: [main] | |
| paths: | |
| - 'apps/web/**' | |
| - '.github/workflows/web.yml' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'apps/web/**' | |
| - '.github/workflows/web.yml' | |
| jobs: | |
| web: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: pnpm/action-setup@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: apps/web/.node-version | |
| cache: 'pnpm' | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile --filter ./apps/web... | |
| - name: Check | |
| run: pnpm --dir apps/web check | |
| - name: Build | |
| run: pnpm --dir apps/web build |