Skip to content

Commit

Permalink
Provide env vars to CI build job
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonhawk committed Nov 1, 2024
1 parent 757c42f commit 47a7054
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ jobs:
name: Build and Test
timeout-minutes: 15
runs-on: ubuntu-latest

steps:
- name: Check out code
uses: actions/checkout@v4
Expand Down Expand Up @@ -39,6 +38,9 @@ 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

0 comments on commit 47a7054

Please sign in to comment.