Skip to content

Feat/issues 425 427 428 429 : Implement bulk export, address validati… #34

Feat/issues 425 427 428 429 : Implement bulk export, address validati…

Feat/issues 425 427 428 429 : Implement bulk export, address validati… #34

Workflow file for this run

name: Accessibility
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
a11y:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Install Playwright browsers
run: npx playwright install --with-deps chromium firefox webkit
- name: Run accessibility tests (WCAG 2.1 AA gate)
run: npx playwright test --grep @a11y
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v4
with:
name: a11y-playwright-report
path: playwright-report/
retention-days: 14