From 200b10252e4f13ec18a3c2be2939f8238b1f2c83 Mon Sep 17 00:00:00 2001 From: Evan Sims Date: Thu, 7 Sep 2023 00:40:28 -0500 Subject: [PATCH] Update mocked environment variables for integrations tests --- .github/workflows/integration.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index fd9fcc1b..7411f042 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -68,3 +68,20 @@ jobs: - name: Run tests run: npm run test:integration + env: + DOMAIN: your-tenant.auth0.com + AUDIENCE: https://api.example.com/users + PORT: 3001 + NEXT_PUBLIC_DOMAIN: your-tenant.auth0.com + NEXT_PUBLIC_CLIENT_ID: yourclientid + NEXT_PUBLIC_AUDIENCE: https://api.example.com/users + NEXT_PUBLIC_API_PORT: 3001 + GATSBY_DOMAIN: your-tenant.auth0.com + GATSBY_CLIENT_ID: yourclientid + GATSBY_AUDIENCE: https://api.example.com/users + GATSBY_API_PORT: 3001 + 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