Skip to content

Commit

Permalink
add env variables
Browse files Browse the repository at this point in the history
  • Loading branch information
frederikprijck committed Sep 19, 2023
1 parent c3541ed commit c31124f
Showing 1 changed file with 13 additions and 4 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,20 @@ jobs:
runs-on: ubuntu-latest

env:
TEST__DOMAIN: your-tenant.auth0.com
TEST__CLIENT_ID: yourclientid
TEST__AUDIENCE: https://api.example.com/users
SKIP_PREFLIGHT_CHECK: true
REACT_APP_DOMAIN: your-tenant.auth0.com
REACT_APP_CLIENT_ID: yourclientid
REACT_APP_AUDIENCE: https://api.example.com/users
REACT_APP_API_PORT: 3001
REACT_APP_DOMAIN: ${{env.TEST__DOMAIN}}
REACT_APP_CLIENT_ID: ${{env.TEST__CLIENT_ID}}
REACT_APP_AUDIENCE: ${{env.TEST__AUDIENCE}}
GATSBY_DOMAIN: ${{env.TEST__DOMAIN}}
GATSBY_CLIENT_ID: ${{env.TEST__CLIENT_ID}}
GATSBY_AUDIENCE: ${{env.TEST__AUDIENCE}}
NEXT_PUBLIC_DOMAIN: ${{env.TEST__DOMAIN}}
NEXT_PUBLIC_CLIENT_ID: ${{env.TEST__CLIENT_ID}}
NEXT_PUBLIC_AUDIENCE: ${{env.TEST__AUDIENCE}}
DOMAIN: ${{env.TEST__DOMAIN}}

steps:
- name: Checkout code
Expand Down

0 comments on commit c31124f

Please sign in to comment.