Skip to content

Phase 2C: React User profile (PR 5) #4

Phase 2C: React User profile (PR 5)

Phase 2C: React User profile (PR 5) #4

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