Skip to content

Merge pull request #44 from MaximeFARRE/feat/health-and-features #109

Merge pull request #44 from MaximeFARRE/feat/health-and-features

Merge pull request #44 from MaximeFARRE/feat/health-and-features #109

Workflow file for this run

name: CI
on:
push:
branches: [pivot/v2, main]
pull_request:
branches: [pivot/v2, main]
jobs:
web:
name: Web (test · tsc · build)
runs-on: ubuntu-latest
defaults:
run:
working-directory: web
steps:
- uses: actions/checkout@v4
- name: Set up Node.js 24
uses: actions/setup-node@v4
with:
node-version: "24"
cache: npm
cache-dependency-path: web/package-lock.json
- name: Install dependencies
run: npm ci
- name: Tests
run: npm test
- name: Type check (tsc)
run: npx tsc --noEmit
- name: Build
env:
NEXT_PUBLIC_SUPABASE_URL: https://placeholder.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY: placeholder
run: npm run build