Skip to content

fix: add Netlify _redirects for SPA routing #38

fix: add Netlify _redirects for SPA routing

fix: add Netlify _redirects for SPA routing #38

Workflow file for this run

name: CI
on:
push:
branches: [main, 'claude/**', 'devin/**']
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Type check
run: npx tsc --noEmit
- name: Build
run: npm run build
- name: Upload build artifact
uses: actions/upload-artifact@v4
with:
name: dist
path: dist/
retention-days: 7