noredink-ui/script/format-axe-report.sh

18 lines
382 B
Bash
Raw Normal View History

2019-07-24 00:55:31 +03:00
#!/usr/bin/env bash
set -euo pipefail
JSON_FILE="${1:-}"
if test -z "$JSON_FILE"; then
echo "Please specify a report JSON file as the first argument."
exit 1
fi
jq -r -f script/axe-report.jq "$JSON_FILE"
NUM_ERRORS="$(jq '.violations | map(.nodes | length) | add' "$JSON_FILE")"
2020-10-31 00:25:29 +03:00
if test "$NUM_ERRORS" -lt 4;
then
echo "$NUM_ERRORS accessibility errors"
2019-07-29 21:47:50 +03:00
exit 1
2019-07-24 00:55:31 +03:00
fi