Skip to content

Phase 3: integrate React features, Playwright e2e, docs/deploy, remove Angular #8

Phase 3: integrate React features, Playwright e2e, docs/deploy, remove Angular

Phase 3: integrate React features, Playwright e2e, docs/deploy, remove Angular #8

Workflow file for this run

name: React
on:
push:
branches: [master]
paths: ['react/**', '.github/workflows/react.yml']
pull_request:
paths: ['react/**', '.github/workflows/react.yml']
jobs:
verify:
runs-on: ubuntu-latest
defaults:
run:
working-directory: react
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: react/package-lock.json
- run: npm ci
- run: npm run lint
- run: npm run typecheck
- run: npm run test:coverage
- run: npm run build
- run: npx playwright install --with-deps chromium
- run: npm run e2e
env:
CI: true