Skip to content

Commit

Permalink
Add echo to workflow to try and debug PR link output.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksmontville committed Jan 11, 2024
1 parent 2c2e1b8 commit 635222c
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,12 @@ jobs:
# Assuming the Firebase deploy action sets the preview URL in the deployment status
# If the URL is not set automatically, you will need to adjust this step to capture it correctly
- name: Set PR Link as Env Variable
run: echo "FIREBASE_DEPLOY_URL=${{ steps.deploy.outputs.deploy_url }}" >> $GITHUB_ENV
run: |
echo "FIREBASE_DEPLOY_URL=${{ steps.firebase_deploy.outputs.deploy_url }}" >> $GITHUB_ENV
echo "Captured URL: ${{ steps.firebase_deploy.outputs.deploy_url }}"

# Step 5: Cypress tests
# Step 5: Cypress tests
- name: Cypress run
uses: cypress-io/github-action@v6
with:
Expand Down

0 comments on commit 635222c

Please sign in to comment.