From c0bf5f36c20e67d2583ed18eee434ac5d251243c Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Mon, 12 Feb 2024 11:06:21 -0800 Subject: [PATCH] ci: add missing env vars for integration tests --- .github/workflows/ci-cd.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 15e09d954..5b3c2cfc4 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -105,7 +105,14 @@ jobs: # health test succeeded, so proceed with integration tests JEST_JUNIT_OUTPUT_NAME=integration-jest-results.xml npm run test:integration -- --reporters=jest-junit env: + API_HOST: ${{ secrets.API_HOST }} + ASSET_HOST: ${{ secrets.ASSET_HOST }} + BACKPACK_HOST: ${{ secrets.BACKPACK_HOST }} + CLOUDDATA_HOST: ${{ secrets.CLOUDDATA_HOST }} + PROJECT_HOST: ${{ secrets.PROJECT_HOST }} ROOT_URL: ${{ secrets.ROOT_URL }} + STAGING_HOST: ${{ secrets.STAGING_HOST }} + STATIC_HOST: ${{ secrets.STATIC_HOST }} # test/integration-legacy/selenium-helpers.js CI: "true"