Skip to content

fix: Add turbopack config for Next.js 16 compatibility #13

fix: Add turbopack config for Next.js 16 compatibility

fix: Add turbopack config for Next.js 16 compatibility #13

Workflow file for this run

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