We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64fde80 commit e95b564Copy full SHA for e95b564
.github/workflows/artifact.yml
@@ -10,12 +10,16 @@ jobs:
10
with:
11
repo-token: ${{ secrets.GITHUB_TOKEN }}
12
artifact-path: 0/html/index.html
13
+ - name: Wait Until Site is Ready
14
+ run: |
15
+ curl --retry 10 --retry-connrefused --retry-max-time 60 ${{ steps.redirect.outputs.url }}
16
- name: Run Lighthouse on Site
17
id: lighthouse
18
uses: foo-software/[email protected]
19
20
urls: ${{ steps.redirect.outputs.url }}
21
outputDirectory: /tmp/lighthouse
22
+ verbose: true
23
- name: Upload Lighthouse Reports
24
uses: actions/upload-artifact@v2
25
0 commit comments