Skip to content

Commit

Permalink
halp
Browse files Browse the repository at this point in the history
  • Loading branch information
solomonhawk committed Nov 2, 2024
1 parent e6ea501 commit 21b3715
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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

0 comments on commit 21b3715

Please sign in to comment.