This repository was archived by the owner on Jul 8, 2020. It is now read-only.

Description
Hi, thanks for putting this tool together. I tested it out using the public server, and ran into the output:
Error from CI backend. invalid json response body at https://builder-dot-lighthouse-ci.appspot.com/ci reason: Unexpected token < in JSON at position 0
Thinking it was a problem with the public server, I deployed a Docker container as described in the docs. The container had the same issue, though.
So I manually ran the curl command as so:
curl -X POST \
-H "Content-Type: application/json" \
-H "X-API-KEY: $LIGHTHOUSE_API_KEY" \
--data '{"output": "json", "url": "http://example.com"}' \
https://<container url>/ci
And I got the output:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Error</title>
</head>
<body>
<pre>Error: ENOENT: no such file or directory, stat '/home/chrome/reports/report.1544322152932.json'</pre>
</body>
</html>
Perhaps something changed in the way Lighthouse generated its reports?