fix: Add turbopack config for Next.js 16 compatibility #13
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: Production Integrity Check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| quality-check: | |
| name: Lint, Typecheck & Test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: 🛑 Checkout Code | |
| uses: actions/checkout@v4 | |
| - name: 🟢 Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - name: 📦 Install Dependencies | |
| run: npm ci | |
| - name: 🎨 Check Formatting (Prettier) | |
| run: npx prettier --check . | |
| - name: 🧹 Run Linter (ESLint) | |
| run: npm run lint | |
| - name: 📐 Type Check (TypeScript) | |
| run: npx tsc --noEmit | |
| - name: 🎭 Install Playwright Browsers | |
| run: npx playwright install --with-deps chromium | |
| - name: 🧪 Run Tests (Vitest) | |
| run: npm run test |