Skip to content

Commit

Permalink
Merge pull request #107 from gagan-suie/dev
Browse files Browse the repository at this point in the history
Fix: testing env variables in ci
  • Loading branch information
gagansuie authored Jan 14, 2023
2 parents 2a96ef8 + 1ecdb02 commit ac0e88c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/ci-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,9 @@ jobs:
run: |
npm run check
npm run test
env:
PUBLIC_API_URL: ${{ secrets.PUBLIC_API_URL }}
PUBLIC_WEBSOCKET_URL: ${{ secrets.PUBLIC_WEBSOCKET_URL }}

- name: Convert E2E Report to Coverage Report
run: |
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/ci-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@ jobs:
run: |
npm run check
npm run test
env:
PUBLIC_API_URL: ${{ secrets.PUBLIC_API_URL }}
PUBLIC_WEBSOCKET_URL: ${{ secrets.PUBLIC_WEBSOCKET_URL }}

- name: Convert E2E Report to Coverage Report
run: |
Expand Down

0 comments on commit ac0e88c

Please sign in to comment.