├── .dockerignore ├── .gitattributes ├── .github └── workflows │ └── test.yml ├── .gitignore ├── Dockerfile ├── Dockerfile.base ├── LICENSE.md ├── README.md ├── THIRD_PARTY_NOTICE.md ├── entrypoint.sh └── screenshots ├── logo.png ├── netlify-logo.png ├── netlify-subdomain.png ├── screenshot-artifact.png ├── screenshot-output.png └── screenshot-report.png /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /Dockerfile.base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/Dockerfile.base -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/THIRD_PARTY_NOTICE.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /screenshots/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/logo.png -------------------------------------------------------------------------------- /screenshots/netlify-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/netlify-logo.png -------------------------------------------------------------------------------- /screenshots/netlify-subdomain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/netlify-subdomain.png -------------------------------------------------------------------------------- /screenshots/screenshot-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/screenshot-artifact.png -------------------------------------------------------------------------------- /screenshots/screenshot-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/screenshot-output.png -------------------------------------------------------------------------------- /screenshots/screenshot-report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejarvis/lighthouse-action/HEAD/screenshots/screenshot-report.png --------------------------------------------------------------------------------