We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c9e000 commit d7945e0Copy full SHA for d7945e0
2 files changed
.github/workflows/deploy.yml
@@ -84,14 +84,6 @@ jobs:
84
uses: actions/upload-artifact@v4
85
with:
86
name: lighthouse-report
87
- path: .lighthouseci/
+ path: lighthouse-report/
88
overwrite: true
89
-
90
- - name: Generate Lighthouse Badges
91
- if: always()
92
- uses: myactionway/lighthouse-badger-action@v2.2
93
- with:
94
- urls: https://designpatternpedia.nl
95
- badge_output_path: lighthouse_results
96
- commit_to_branch: false
97
- upload_artifact: true
+ if-no-files-found: error
lighthouserc.js
@@ -1,10 +1,12 @@
1
module.exports = {
2
ci: {
3
collect: {
4
- numberOfRuns: 3,
+ staticDistDir: "./build",
5
+ numberOfRuns: 1,
6
},
7
upload: {
- target: 'temporary-public-storage',
8
+ target: "filesystem",
9
+ outputDir: "./lighthouse-report",
10
11
12
};
0 commit comments