Files
squoosh/run_lighthouse.sh
2019-10-17 10:32:55 +01:00

13 lines
204 B
Bash
Executable File

#!/bin/bash
npx http-server -p 9000 ./dist &
npm install -g @lhci/cli@next
lhci collect --url=http://localhost:9000/
lhci assert --preset="lighthouse:recommended"
EXIT_CODE=$?
kill $!
exit $EXIT_CODE