21 lines
410 B
Bash
21 lines
410 B
Bash
#!/bin/bash
|
|
|
|
set -x
|
|
|
|
envtpl -o patty.json /home/pa11y/patty.json.tmpl
|
|
|
|
mkdir -p reports
|
|
rm -f reports/*
|
|
|
|
cd reports
|
|
|
|
export PUPPETEER_EXECUTABLE_PATH=$(which chromium-browser)
|
|
export PA11Y_REPORTER="${PA11Y_REPORTER:-html}"
|
|
|
|
pa11y \
|
|
--config ../patty.json \
|
|
--include-warnings \
|
|
--include-notices \
|
|
--reporter "${PA11Y_REPORTER}" \
|
|
"$PA11Y_URL" > "pa11y.report.${PA11Y_REPORTER}" || exit 0
|