feat(Sheet): allow closing the sheet with the keyboard or a screen reader #3540
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: audit-a11y | |
on: [pull_request] | |
concurrency: | |
group: audit-a11y-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
audit-a11y: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
env: | |
PUPPETEER_SKIP_CHROMIUM_DOWNLOAD: 'true' | |
run: yarn install --immutable --immutable-cache | |
- name: 'Build storybook' | |
run: 'yarn storybook-static' | |
- name: 'Audit accessibility' | |
uses: './.github/actions/audit-accessibility' | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
azure-account-name: ${{ secrets.AZURE_ACCOUNT_NAME }} | |
azure-account-key: ${{ secrets.AZURE_ACCOUNT_KEY }} |