2019-12-24 12:54:32 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2019-12-26 12:10:23 +01:00
|
|
|
set -x
|
|
|
|
|
2019-12-24 12:54:32 +01:00
|
|
|
envtpl -o config.js /home/lighthouse/config.js.tmpl
|
|
|
|
|
|
|
|
mkdir -p reports
|
|
|
|
rm -f reports/*
|
|
|
|
|
|
|
|
cd reports
|
|
|
|
|
|
|
|
lighthouse \
|
2021-02-22 17:06:58 +01:00
|
|
|
"$LIGHTHOUSE_URL" \
|
2019-12-24 12:54:32 +01:00
|
|
|
--no-enable-error-reporting \
|
|
|
|
--chrome-flags="--headless --disable-dev-shm-usage --no-sandbox --disable-gpu" \
|
|
|
|
--config=../config.js \
|
|
|
|
--output json --output html \
|
2021-02-22 17:06:58 +01:00
|
|
|
--output-path=lighthouse
|