@@ -597,11 +597,11 @@ jobs:
597597 ci: {
598598 collect: {
599599 url: [
600- '${{ steps .deploy-production.outputs.deployment-url }}/',
601- '${{ steps .deploy-production.outputs.deployment-url }}/about',
602- '${{ steps .deploy-production.outputs.deployment-url }}/hackathons',
603- '${{ steps .deploy-production.outputs.deployment-url }}/leaderboard',
604- '${{ steps .deploy-production.outputs.deployment-url }}/auth/signin'
600+ '${{ needs .deploy-production.outputs.deployment-url }}/',
601+ '${{ needs .deploy-production.outputs.deployment-url }}/about',
602+ '${{ needs .deploy-production.outputs.deployment-url }}/hackathons',
603+ '${{ needs .deploy-production.outputs.deployment-url }}/leaderboard',
604+ '${{ needs .deploy-production.outputs.deployment-url }}/auth/signin'
605605 ],
606606 numberOfRuns: 3,
607607 settings: {
@@ -653,7 +653,7 @@ jobs:
653653 - name : Run Lighthouse CI on deployed site
654654 run : |
655655 echo "🚀 Starting Lighthouse CI performance testing..."
656- echo "Testing URL: ${{ steps .deploy-production.outputs.deployment-url }}"
656+ echo "Testing URL: ${{ needs .deploy-production.outputs.deployment-url }}"
657657
658658 # Run Lighthouse CI with the deployed configuration
659659 lhci autorun --config=lighthouserc-deployed.js
@@ -715,11 +715,11 @@ jobs:
715715 ci: {
716716 collect: {
717717 url: [
718- '${{ steps .deploy-staging.outputs.deployment-url }}/',
719- '${{ steps .deploy-staging.outputs.deployment-url }}/about',
720- '${{ steps .deploy-staging.outputs.deployment-url }}/hackathons',
721- '${{ steps .deploy-staging.outputs.deployment-url }}/leaderboard',
722- '${{ steps .deploy-staging.outputs.deployment-url }}/auth/signin'
718+ '${{ needs .deploy-staging.outputs.deployment-url }}/',
719+ '${{ needs .deploy-staging.outputs.deployment-url }}/about',
720+ '${{ needs .deploy-staging.outputs.deployment-url }}/hackathons',
721+ '${{ needs .deploy-staging.outputs.deployment-url }}/leaderboard',
722+ '${{ needs .deploy-staging.outputs.deployment-url }}/auth/signin'
723723 ],
724724 numberOfRuns: 2,
725725 settings: {
@@ -765,7 +765,7 @@ jobs:
765765 - name : Run Lighthouse CI on staging site
766766 run : |
767767 echo "🚀 Starting Lighthouse CI performance testing on staging..."
768- echo "Testing URL: ${{ steps .deploy-staging.outputs.deployment-url }}"
768+ echo "Testing URL: ${{ needs .deploy-staging.outputs.deployment-url }}"
769769
770770 # Run Lighthouse CI with the staging configuration
771771 lhci autorun --config=lighthouserc-staging.js
0 commit comments