Skip to content

fix(frontend): map full beneficiary list and enforce bps allocation validation #1020

fix(frontend): map full beneficiary list and enforce bps allocation validation

fix(frontend): map full beneficiary list and enforce bps allocation validation #1020

Workflow file for this run

name: Frontend CI
on:
push:
branches: ["main", "fix-ci", "master"]
paths:
- "frontend/**"
pull_request:
branches: ["main", "fix-ci", "master"]
paths:
- "frontend/**"
jobs:
e2e-tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: frontend
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: 'npm'
cache-dependency-path: frontend/package-lock.json
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium
- name: Run Playwright E2E tests
run: npm run test:e2e