We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de165f7 commit 091ae16Copy full SHA for 091ae16
1 file changed
.github/workflows/build-deploy.yml
@@ -52,6 +52,20 @@ jobs:
52
env:
53
FIREBASE_CLI_PREVIEWS: hostingchannels
54
55
+ lighthouse:
56
+ needs: preview
57
+ runs-on: ubuntu-latest
58
+ env:
59
+ LHCI_GITHUB_APP_TOKEN: ${{ secrets.LHCI_GITHUB_APP_TOKEN }}
60
+ LHCI_PRESET: lighthouse:recommended
61
+ LHCI_TARGET: temporary-public-storage
62
+ LHCI_URL: ${{ needs.preview.outputs.details_url }}
63
+ steps:
64
+ - run: npm install -g @lhci/cli
65
+ - run: lhci collect
66
+ # - run: lhci assert
67
+ - run: lhci upload
68
+
69
deploy:
70
needs: build
71
runs-on: ubuntu-latest
0 commit comments