Skip to content

Commit

Permalink
fix: cypress env fix (#719)
Browse files Browse the repository at this point in the history
  • Loading branch information
Sanskar2001 authored Oct 7, 2024
1 parent aa9da4f commit 95eabc0
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-automation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ jobs:
runs-on: ubuntu-latest
environment: Testing
env:
HS_Pub_Key: ${{ secrets.HYPERSWITCH_PUBLISHABLE_KEY }}
HS_Sec_Key: ${{ secrets.HYPERSWITCH_SECRET_KEY }}
HS_Prof_Id: ${{ secrets.PROFILE_ID }}
HS_Server_Url: "https://sandbox.hyperswitch.io"
HS_Client_Url: "http://localhost:9050"
Expand Down Expand Up @@ -58,6 +56,6 @@ jobs:
with:
working-directory: ./cypress-tests
env:
CYPRESS_HYPERSWITCH_PUBLISHABLE_KEY: $HS_Pub_Key
CYPRESS_HYPERSWITCH_SECRET_KEY: $HS_Sec_Key
CYPRESS_HYPERSWITCH_PUBLISHABLE_KEY: ${{ secrets.HYPERSWITCH_PUBLISHABLE_KEY }}
CYPRESS_HYPERSWITCH_SECRET_KEY: ${{ secrets.HYPERSWITCH_SECRET_KEY }}
# Runs Cypress tests located in the specified directory

0 comments on commit 95eabc0

Please sign in to comment.