Skip to content

Commit

Permalink
check the path of peipleine
Browse files Browse the repository at this point in the history
Signed-off-by: Yash Khare <[email protected]>
  • Loading branch information
khareyash05 committed Dec 16, 2024
1 parent 19dda7a commit 61bdbde
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,23 @@ jobs:
- name: run Lighthouse CI for the Application
run: |
npm install -g @lhci/[email protected]
lhci autorun --config=lighthouserc.json || echo "LHCI failed!"
lhci autorun --config=lighthouserc.json
- name: run Lighthouse CI for Keploy.io Deployed Website
run: |
npm install -g @lhci/[email protected]
lhci autorun --config=lighthouserckeploy.json || echo "LHCI failed!"
lhci autorun --config=lighthouserckeploy.json
- name: Compare Lighthouse Reports
run: |
node scripts/compare-lhci-reports.js
node scripts/compare-lhci-reports.js
- name: Upload Lighthouse Reports
uses: actions/upload-artifact@v3
with:
name: lhci-reports
path: ./lhci-reports
# After running LHCI for the Application
- name: List Application Reports
run: ls -la ./lhci-reports/app/latest-run/

# After running LHCI for Keploy.io
- name: List Keploy.io Reports
run: ls -la ./lhci-reports/keploy.io/latest-run/

0 comments on commit 61bdbde

Please sign in to comment.