We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 23d3f8c + e684fde commit b752719Copy full SHA for b752719
.github/workflows/deploy.yml
@@ -48,3 +48,25 @@ jobs:
48
- name: Deploy to GitHub Pages
49
id: deployment
50
uses: actions/deploy-pages@v4
51
+
52
+ lighthouse:
53
+ name: Lighthouse
54
+ needs: deploy
55
+ runs-on: ubuntu-latest
56
57
+ steps:
58
+ - uses: actions/checkout@v4
59
+ - name: Use Node.js 20
60
+ uses: actions/setup-node@v4
61
+ with:
62
+ node-version: 20
63
64
+ - name: npm install, build
65
+ run: |
66
+ npm install
67
+ npm run build
68
69
+ - name: run Lighthouse CI
70
71
+ npm install -g @lhci/cli@0.15.x
72
+ lhci autorun
lighthouserc.js
@@ -0,0 +1,7 @@
1
+module.exports = {
2
+ ci: {
3
+ upload: {
4
+ target: "temporary-public-storage",
5
+ },
6
7
+};
0 commit comments