Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/workflows/a11y-scanner.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Accessibility Scanner
permissions:
actions: write
contents: write
issues: write
pull-requests: write
on:
workflow_dispatch:
push:
branches: max/a11y-scanner

jobs:
accessibility_scanner:
name: Run accessibility scanner
runs-on: ubuntu-latest
steps:
- uses: github/accessibility-scanner@v2
with:
urls: |
https://cds.coinbase.com
repository: coinbase/cds
token: ${{ secrets.GH_TOKEN }}
cache_key: coinbase.com
skip_copilot_assignment: true
include_screenshots: true
Comment thread Fixed
Loading