We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b4a670f commit 64fde80Copy full SHA for 64fde80
.github/workflows/artifact.yml
@@ -4,8 +4,20 @@ jobs:
4
runs-on: ubuntu-latest
5
name: Run CircleCI artifacts redirector
6
steps:
7
- - name: GitHub Action step
8
- uses: larsoner/circleci-artifacts-redirector-action@master
+ - name: Create URL for CircleCI artifact
+ id: redirect
9
+ uses: larsoner/[email protected]
10
with:
11
repo-token: ${{ secrets.GITHUB_TOKEN }}
12
artifact-path: 0/html/index.html
13
+ - name: Run Lighthouse on Site
14
+ id: lighthouse
15
+ uses: foo-software/[email protected]
16
+ with:
17
+ urls: ${{ steps.redirect.outputs.url }}
18
+ outputDirectory: /tmp/lighthouse
19
+ - name: Upload Lighthouse Reports
20
+ uses: actions/upload-artifact@v2
21
22
+ name: Lighthouse Report ${{ github.run_number }}
23
+ path: /tmp/lighthouse
0 commit comments