Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,20 @@ jobs:
env:
FIREBASE_CLI_PREVIEWS: hostingchannels

lighthouse:
needs: preview
runs-on: ubuntu-latest
env:
LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
LHCI_PRESET: lighthouse:recommended
LHCI_TARGET: temporary-public-storage
LHCI_URL: ${{ needs.preview.outputs.details_url }}
steps:
- run: npm install -g @lhci/cli
- run: lhci collect
# - run: lhci assert
- run: lhci upload

deploy:
needs: build
runs-on: ubuntu-latest
Expand Down