Skip to content

test(splitter-v3): 108 tests, fuzz targets, CI coverage pipeline #112

test(splitter-v3): 108 tests, fuzz targets, CI coverage pipeline

test(splitter-v3): 108 tests, fuzz targets, CI coverage pipeline #112

Workflow file for this run

name: Frontend CI

Check failure on line 1 in .github/workflows/frontend.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/frontend.yml

Invalid workflow file

(Line: 43, Col: 9): Unexpected value 'working-directory'
on:
push:
branches: [main]
pull_request:
branches: [main]
paths:
- "frontend/**"
jobs:
e2e-validation:
timeout-minutes: 15
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
cache: "npm"
cache-dependency-path: frontend/package-lock.json
- name: Install Dependencies
run: npm ci
working-directory: ./frontend
- name: Run ESLint
run: npx eslint . --max-warnings 0
working-directory: ./frontend
- name: Install Playwright Browsers
run: npx playwright install --with-deps
working-directory: ./frontend
- name: Run E2E Tests
uses: nick-invision/retry@v2
with:
timeout_minutes: 15
max_attempts: 3
command: npx playwright test
working-directory: ./frontend
- name: Upload Report
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: frontend/playwright-report/
retention-days: 30