We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2cd56c commit 4359525Copy full SHA for 4359525
.github/workflows/accessibility-scan.yml
@@ -1,5 +1,4 @@
1
# This workflow uses actions to scan for accessibility
2
-
3
name: Accessibility Scan
4
5
on: [push, pull_request]
@@ -36,7 +35,9 @@ jobs:
36
35
37
- name: Run axe-core accessibility scan and save results as JSON
38
run: |
39
- npx @axe-core/cli http://localhost:8080 --save ./axe-reports/accessibility-report.json
+ npx @axe-core/cli http://localhost:8080 \
+ --chrome-options="--no-sandbox --disable-dev-shm-usage --user-data-dir=/tmp/chrome-profile" \
40
+ --save ./axe-reports/accessibility-report.json
41
echo "Results saved to ./axe-reports/accessibility-report.json"
42
43
- name: Verify if the report is created
0 commit comments