From d5e38827c8ecdc1fc7233ddac1364c173c317f23 Mon Sep 17 00:00:00 2001 From: frederikprijck Date: Tue, 19 Sep 2023 13:08:35 +0200 Subject: [PATCH] update --- .github/workflows/integration.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 2ef12c8d..d8c10c1a 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -19,9 +19,6 @@ concurrency: env: NODE_VERSION: 18 - # Mock user credentials for Cypress tests - CYPRESS_USER_EMAIL: testing@example.com - CYPRESS_USER_PASSWORD: mockpassword jobs: test-examples: @@ -30,6 +27,8 @@ jobs: env: SKIP_PREFLIGHT_CHECK: true + CYPRESS_USER_EMAIL: ${{secrets.CYPRESS_USER_EMAIL}} + CYPRESS_USER_PASSWORD: ${{secrets.CYPRESS_USER_PASSWORD}} REACT_APP_DOMAIN: ${{secrets.TEST_DOMAIN}} REACT_APP_CLIENT_ID: ${{secrets.TEST_CLIENT_ID}} REACT_APP_AUDIENCE: ${{secrets.TEST_AUDIENCE}} @@ -57,4 +56,4 @@ jobs: run: npm run install:examples - name: Run integration test - run: npm run test:integration + run: npm run test:cra