Update .github/workflows/web-testing.yml

Co-authored-by: greptile-apps[bot] <165735046+greptile-apps[bot]@users.noreply.github.com>
This commit is contained in:
dal 2025-04-29 08:46:53 -07:00 committed by GitHub
parent 9945d4aa4e
commit 9d6675a643
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -117,7 +117,9 @@ jobs:
- name: Run API Server
working-directory: ./api
run: ./target/release/server & # Run the built binary in the background
run: |
./target/release/server &
echo "API_PID=$!" >> $GITHUB_ENV # Store PID for later cleanup
env:
# Core Supabase/DB/Redis vars (Dynamically set)
DATABASE_URL: ${{ env.DB_URL }}