feat(a11y): improve keyboard and screen-reader support across composer, lists, search, and dialogs #3917
Workflow file for this run
This file contains hidden or 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: Size | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| paths-ignore: | |
| - '**.test.*' | |
| - '**.md' | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| jobs: | |
| compressed-size: | |
| name: Compressed Size | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: '.nvmrc' | |
| - uses: preactjs/compressed-size-action@v2 | |
| env: | |
| NODE_OPTIONS: --max_old_space_size=4096 | |
| with: | |
| repo-token: '${{ secrets.GITHUB_TOKEN }}' | |
| pattern: './dist/**/*.{?(c|m)js,css,json}' | |
| strip-hash: "\\b\\w{8}\\." |