Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,26 @@ jobs:
- run: pnpm test:a11y
- run: pnpm build

playwright-a11y:
name: Playwright A11y Gate
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build

- name: Install Playwright browsers
run: npx playwright install --with-deps chromium

- name: Run Playwright a11y tests
run: pnpm test:a11y:playwright

lighthouse:
name: Lighthouse Audit
runs-on: ubuntu-latest
Expand Down
Loading
Loading