Skip to content

test: setup a11y tests with playwright #2

test: setup a11y tests with playwright

test: setup a11y tests with playwright #2

Workflow file for this run

name: playwright
on:
pull_request:
branches:
- main
- 'canary/**'
jobs:
test:
runs-on: ubuntu-latest
name: Playwright Accessibility
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install
uses: ./.github/composite-actions/install
- name: Install Playwright Browsers
run: npx playwright install --with-deps
- name: Run Playwright tests
run: npm run test:a11y
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30