Skip to content

fix(accessibility): reject unknown audit types before they reach the device #1141

fix(accessibility): reject unknown audit types before they reach the device

fix(accessibility): reject unknown audit types before they reach the device #1141

Workflow file for this run

name: Format Check
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
format-check:
runs-on: macos-latest
steps:
- uses: actions/checkout@v7
- name: Use Node.js (LTS)
uses: actions/setup-node@v7
with:
node-version: 'lts/*'
- name: Install dependencies
run: npm install
- name: Check formatting
# Run formatter in check mode (doesn't modify files)
run: npm run format:check
- name: Format instructions (if check fails)
if: ${{ failure() }}
run: |
echo "::error::Formatting issues detected. Run 'npm run format' locally to fix."