feat(SidenavBar): add first draft of the component #5333
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: audit-a11y | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| concurrency: | |
| group: audit-a11y-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| audit-a11y: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| persist-credentials: false | |
| - 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 }} |