Accessibility Scanner #5
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: Accessibility Scanner | |
| on: workflow_dispatch # This configures the workflow to run manually, instead of (e.g.) automatically in every PR. Check out https://docs.github.com/en/actions/reference/workflows-and-actions/workflow-syntax#on for more options. | |
| jobs: | |
| accessibility_scanner: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: github/accessibility-scanner@v2 | |
| with: | |
| urls: | # Provide a newline-delimited list of URLs to scan; more information below. | |
| https://barronbytes.github.io/teacher-scripts/ | |
| repository: barronbytes/teacher-scripts | |
| token: ${{ secrets.GH_A11Y_TOKEN }} # Fine-grained token with read/write access to repo on actions, contents, issues, and PRs. | |
| cache_key: teacher-scripts-a11y-scan-cache |