fix(theme): improve docs sidebar category caret aria-label accessibility #3870
Workflow file for this run
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: Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
- docusaurus-v** | |
paths: | |
- package.json | |
- yarn.lock | |
- jest.config.mjs | |
- packages/** | |
- tsconfig.json | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
test: | |
name: Tests | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: ['16.14', '16', '18'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Use Node.js ${{ matrix.node }} | |
uses: actions/setup-node@64ed1c7eab4cce3362f8c340dee64e5eaeef8f7c # v3 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: yarn | |
- name: Installation | |
run: yarn | |
- name: Test | |
run: yarn test | |
- name: TypeCheck website | |
run: yarn workspace website typecheck | |
- name: Remove Theme Internal Re-export | |
run: yarn workspace @docusaurus/theme-common removeThemeInternalReexport | |
- name: Docusaurus Build | |
run: yarn build:website:fast |