Skip to content

report test

report test #12

Workflow file for this run

name: Lighthouse Report
on: [pull_request]
jobs:
lighthouse:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: mkdir /tmp/artifacts
- name: Run Lighthouse
uses: foo-software/lighthouse-check-action@master
with:
outputDirectory: /tmp/artifacts
urls: 'https://quickstarts.teradata.com,https://quickstarts.teradata.com/nos.html'
- name: Upload artifacts
uses: actions/upload-artifact@master
with:
name: Lighthouse reports
path: /tmp/artifacts
accessToken: ${{ secrets.GITHUB_TOKEN }}
- name: Comment on PR
uses: pullreminders/comment-on-pr@v1
with:
message: |
### Lighthouse Report
The Lighthouse report is available [here](link-to-your-artifact).