Skip to content

feat(react): improve form-control accessibility #280

feat(react): improve form-control accessibility

feat(react): improve form-control accessibility #280

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
branches-ignore:
- changeset-release/master
jobs:
build:
if: "github.event.pull_request.title != 'chore: version packages'"
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22]
steps:
- uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
- name: Build
run: pnpm build
- name: Test
run: pnpm test -- --coverage
- name: Install browser for Playwright
run: pnpm exec playwright install --with-deps chrome
- name: Accessibility tests
run: pnpm test:accessibility
- name: Upload Playwright report
if: failure()
uses: actions/upload-artifact@v4
with:
name: playwright-report
path: |
playwright-report/
apps/docs/playwright-report/
apps/docs/test-results/
if-no-files-found: ignore