♿ a11y(bal-nav): button overlays not reachable via keyboard #2965
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: 👷 Continuous | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: 🏗️ Lint, Test & Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 15 | |
env: | |
HUSKY: 0 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/build | |
with: | |
build: true | |
token: ${{ secrets.GITHUB_TOKEN }} | |
e2e-components: | |
name: 🧪 Component Tests | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
env: | |
HUSKY: 0 | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
- uses: ./.github/workflows/actions/e2e-setup | |
- uses: ./.github/workflows/actions/e2e-components | |
e2e-visual: | |
name: 🧪 E2E Tests | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
env: | |
HUSKY: 0 | |
needs: [build] | |
strategy: | |
fail-fast: false | |
matrix: | |
containers: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
- uses: ./.github/workflows/actions/e2e-setup | |
- uses: ./.github/workflows/actions/e2e-visual | |
angular: | |
name: 🧪 Angular Tests | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 30 | |
env: | |
HUSKY: 0 | |
strategy: | |
fail-fast: false | |
matrix: | |
apps: [v16, v17, v18] | |
needs: [build] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/workflows/actions/setup | |
- uses: ./.github/workflows/actions/angular-setup | |
with: | |
app: ${{ matrix.apps }} | |
- uses: ./.github/workflows/actions/angular-build | |
with: | |
app: ${{ matrix.apps }} | |
- uses: ./.github/workflows/actions/angular-test | |
with: | |
app: ${{ matrix.apps }} |