We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31b0428 commit d7debb9Copy full SHA for d7debb9
1 file changed
.github/workflows/build.yml
@@ -115,8 +115,10 @@ jobs:
115
.[] as $page |
116
if ($page.violations | length) == 0 then "Geen WCAG-fouten gevonden."
117
else
118
- $page.violations[]
119
- | "[\(.impact // "unknown")] \(.id) - \(.description) (\(.helpUrl))"
+ $page.violations[] |
+ "[\(.impact // "unknown")] \(.id) - \(.description) (\(.helpUrl))",
120
+ (.nodes[]? | " - \(.target | join(\", \"))\n \(.failureSummary // \"\")"),
121
+ ""
122
end
123
' $CHECK_DIR/axe-report.json | tee $CHECK_DIR/wcag-report.txt
124
0 commit comments