-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.achecker.yml
More file actions
40 lines (32 loc) · 989 Bytes
/
.achecker.yml
File metadata and controls
40 lines (32 loc) · 989 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# accessibility-checker configuration
# This configuration is required to run Equal Access Checker in GitHub Actions
# where the browser sandbox is not available.
# Use the latest rule archive
ruleArchive: latest
# Scan against IBM Accessibility policy
policies:
- IBM_Accessibility
# Fail on violations and potential violations
failLevels:
- violation
- potentialviolation
# Report all levels
reportLevels:
- violation
- potentialviolation
- recommendation
- potentialrecommendation
- manual
# Output format
outputFormat:
- json
# Results folder
outputFolder: results
# Baseline folder (not currently used)
baselineFolder: test/baselines
# CRITICAL: Puppeteer arguments for running in CI/CD environments
# These flags are required for GitHub Actions where the browser sandbox is not available
# See: https://github.com/puppeteer/puppeteer/blob/main/docs/troubleshooting.md#running-puppeteer-in-docker
puppeteerArgs:
- --no-sandbox
- --disable-setuid-sandbox