Created
April 5, 2022 05:35
-
-
Save dainemawer/6793846db20abe2203f174c809132570 to your computer and use it in GitHub Desktop.
Github Lighthouse Server Config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Lighthouse | |
| on: push | |
| jobs: | |
| lighthouse: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run Lighthouse on urls and upload data to private lhci server | |
| uses: treosh/lighthouse-ci-action@v9 | |
| with: | |
| urls: 'https://example.com/' | |
| serverBaseUrl: ${{ secrets.LHCI_SERVER_URL }} | |
| serverToken: ${{ secrets.LHCI_SERVER_TOKEN }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment