fix: regenerate backend lockfile to sync with package.json #4
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 | |
| - 'milestone/**' | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| verify: | |
| name: Verify | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| cache-dependency-path: | | |
| backend/package-lock.json | |
| frontend/package-lock.json | |
| # --- Backend --- | |
| - name: Install backend dependencies | |
| run: cd backend && npm ci | |
| - name: Backend type check | |
| run: cd backend && npx tsc --noEmit | |
| - name: Backend tests | |
| run: cd backend && npx vitest run | |
| # --- Frontend --- | |
| - name: Install frontend dependencies | |
| run: cd frontend && npm ci | |
| - name: Frontend type check | |
| run: cd frontend && npx tsc -b | |
| - name: Frontend build | |
| run: cd frontend && npx vite build |