├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── actions-card.png ├── images ├── wpt-action-api-secret.png ├── wpt-action-fail-pr.png └── wpt-action-sample-comment.png ├── index.js ├── package.json ├── samples ├── wpt-budget.json └── wpt-options.json └── templates └── comment.md /.gitignore: -------------------------------------------------------------------------------- 1 | .secrets 2 | .github/workflows/local.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/action.yml -------------------------------------------------------------------------------- /actions-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/actions-card.png -------------------------------------------------------------------------------- /images/wpt-action-api-secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/images/wpt-action-api-secret.png -------------------------------------------------------------------------------- /images/wpt-action-fail-pr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/images/wpt-action-fail-pr.png -------------------------------------------------------------------------------- /images/wpt-action-sample-comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/images/wpt-action-sample-comment.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/package.json -------------------------------------------------------------------------------- /samples/wpt-budget.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/samples/wpt-budget.json -------------------------------------------------------------------------------- /samples/wpt-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/samples/wpt-options.json -------------------------------------------------------------------------------- /templates/comment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catchpoint/WebPageTest.github-action/HEAD/templates/comment.md --------------------------------------------------------------------------------