Skip to content

Merge pull request #13 from WWStoryMode/feature/persistent-header-rol… #14

Merge pull request #13 from WWStoryMode/feature/persistent-header-rol…

Merge pull request #13 from WWStoryMode/feature/persistent-header-rol… #14

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
continue-on-error: true # TODO: fix pre-existing lint errors then remove this
- name: Type check
run: npm run type-check
- name: Build
run: npm run build
env:
NEXT_PUBLIC_SUPABASE_URL: https://placeholder.supabase.co
NEXT_PUBLIC_SUPABASE_ANON_KEY: placeholder-anon-key
NEXT_PUBLIC_DEMO_MODE: 'true'