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 09:00:43 -07:00 committed by GitHub
parent 6d0b7b4f20
commit a735c8bc57
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 1 deletions

View File

@ -49,7 +49,9 @@ jobs:
- name: Run API Server
working-directory: ./api
run: ./target/release/server & # Run in background
run: |
./target/release/server & # Run in background
echo $! > /tmp/api-server.pid # Store PID for later cleanup
env:
# Core Supabase/DB/Redis vars from setup action outputs
DATABASE_URL: ${{ steps.setup_env.outputs.database-url }}