From 21b371548def372813b354afc87384c91d6f96d6 Mon Sep 17 00:00:00 2001 From: Solomon Hawk Date: Sat, 2 Nov 2024 11:25:25 -0400 Subject: [PATCH] halp --- .github/workflows/ci.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 407ec06..216a35f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,6 +6,10 @@ on: pull_request: types: [opened, synchronize] +env: + API_PROXY_URL: ${{ vars.API_PROXY_URL }} + PUBLIC_API_BASE_URL: ${{ vars.PUBLIC_API_BASE_URL }} + jobs: build: name: Build and Test @@ -27,6 +31,11 @@ jobs: node-version: 20 cache: "npm" + - name: Verify environment + run: | + echo "API_PROXY_URL: ${{ vars.API_PROXY_URL }}" + echo "PUBLIC_API_BASE_URL: ${{ vars.PUBLIC_API_BASE_URL }}" + - name: Install dependencies run: npm install @@ -38,9 +47,6 @@ jobs: - name: Build run: npm run build - env: - API_PROXY_URL: ${{ vars.API_PROXY_URL }} - PUBLIC_API_BASE_URL: ${{ vars.PUBLIC_API_BASE_URL }} - name: Test run: npm run test