Post: Firebase Auth with NextJS Proxy (#741) #121
This file contains 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 Check - Push Master | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
lighthouse-check: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- run: mkdir /tmp/artifacts | |
- name: Run Lighthouse | |
uses: foo-software/lighthouse-check-action@master | |
with: | |
accessToken: ${{ secrets.LIGHTHOUSE_CHECK_GITHUB_ACCESS_TOKEN }} | |
author: ${{ github.actor }} | |
# awsAccessKeyId: ${{ secrets.LIGHTHOUSE_CHECK_AWS_ACCESS_KEY_ID }} | |
# awsBucket: ${{ secrets.LIGHTHOUSE_CHECK_AWS_BUCKET }} | |
# awsRegion: ${{ secrets.LIGHTHOUSE_CHECK_AWS_REGION }} | |
# awsSecretAccessKey: ${{ secrets.LIGHTHOUSE_CHECK_AWS_SECRET_ACCESS_KEY }} | |
branch: ${{ github.ref }} | |
outputDirectory: /tmp/artifacts | |
urls: 'https://duncanleung.com' | |
sha: ${{ github.sha }} | |
# slackWebhookUrl: ${{ secrets.LIGHTHOUSE_CHECK_WEBHOOK_URL }} | |
- name: Upload artifacts | |
uses: actions/upload-artifact@master | |
with: | |
name: Lighthouse reports | |
path: /tmp/artifacts |