Skip to content

Commit f747ec0

Browse files
Remove artifact upload
1 parent 7537508 commit f747ec0

2 files changed

Lines changed: 1 addition & 19 deletions

File tree

.github/workflows/run-ci-cd.yaml

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -512,20 +512,6 @@ jobs:
512512
run: |
513513
pnpm run lighthouse-ci
514514
515-
- name: Check for report files (temporary debug)
516-
run: ls -la frontend/.lighthouseci
517-
518-
- name: Upload Lighthouse artifacts
519-
uses: actions/upload-artifact@v4
520-
with:
521-
name: lighthouse-report
522-
path: |
523-
frontend/.lighthouseci/*.html
524-
frontend/.lighthouseci/*.json
525-
if-no-files-found: ignore
526-
include-hidden-files: true
527-
retention-days: 30
528-
529515
build-production-images:
530516
name: Build Production Images
531517
env:

frontend/lighthouserc.js

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
const LHCI_CHROME_FLAGS =
22
process.env.LHCI_CHROME_FLAGS || '--disable-dev-shm-usage --headless --no-sandbox'
3-
const LHCI_OUTPUT_DIR = process.env.LHCI_OUTPUT_DIR || '.lighthouseci/'
4-
const LHCI_UPLOAD_TARGET = process.env.LHCI_UPLOAD_TARGET || 'filesystem'
53
const LHCI_URL = process.env.LHCI_URL || 'http://localhost:3000/'
64

75
module.exports = {
@@ -22,9 +20,7 @@ module.exports = {
2220
url: [LHCI_URL],
2321
},
2422
upload: {
25-
outputDir: LHCI_OUTPUT_DIR,
26-
reportFilenamePattern: '%%DATETIME%%-%%HOSTNAME%%%%PATHNAME%%.%%EXTENSION%%',
27-
target: LHCI_UPLOAD_TARGET,
23+
target: 'temporary-public-storage',
2824
},
2925
},
3026
}

0 commit comments

Comments
 (0)