Skip to content
Merged
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
32 changes: 32 additions & 0 deletions .github/workflows/ally-a11y.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Accessibility scan via ally (own axe-core a11y tool). Non-blocking/informational.
name: Ally A11y Scan

on:
schedule:
- cron: "30 8 * * 1" # Mondays 08:30 UTC
workflow_dispatch:

permissions:
contents: read

jobs:
a11y:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Ally accessibility scan
continue-on-error: true
uses: forbiddenlink/ally@main
with:
Comment on lines +17 to +20
path: "."
threshold: "9999"
max-files: "500"
output: ".ally"
- name: Upload report
if: always()
uses: actions/upload-artifact@v4
with:
name: ally-a11y-report
path: ".ally/**"
if-no-files-found: warn
retention-days: 30
Loading