fix: manipulate thumbnav roles to avoid false positives in a11y tests #1955
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: Code linting | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| linting: | |
| runs-on: ubuntu-latest | |
| concurrency: ci-lint-${{ github.ref }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Node.js environment | |
| uses: ./.github/actions/node_env_setup | |
| with: | |
| node-version: '22' | |
| - name: Lint | |
| run: pnpm lint |