Skip to content

fix: replace stub UI files with real implementations #20

fix: replace stub UI files with real implementations

fix: replace stub UI files with real implementations #20

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
name: Test & Typecheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
cache-dependency-path: web/package-lock.json
- name: Install dependencies
working-directory: web
run: npm ci
- name: Typecheck
working-directory: web
run: npm run typecheck
- name: Test
working-directory: web
run: npm test