mirror of
https://github.com/GoogleChromeLabs/squoosh.git
synced 2025-11-18 03:29:17 +00:00
13 lines
207 B
Bash
Executable File
13 lines
207 B
Bash
Executable File
#!/bin/bash
|
|
|
|
npx http-server -c0 -p 9000 build &
|
|
|
|
npm install -g @lhci/cli@next
|
|
|
|
lhci collect --url=http://localhost:9000/
|
|
|
|
lhci assert --preset="lighthouse:recommended"
|
|
|
|
EXIT_CODE=$?
|
|
kill $!
|
|
exit $EXIT_CODE |