Skip to content

Commit

Permalink
Set server script output
Browse files Browse the repository at this point in the history
Need to discart output of the server script in order
to fully run the process in the background.  This
may need revision as we would want to capture script
failures, but for now, testing running the server in
the background.  This discard will prevent the
process from being suspended when sent to background.
  • Loading branch information
JN-Hernandez committed May 14, 2024
1 parent 83e924b commit 1e1b894
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 @@ -36,7 +36,9 @@ jobs:
run: ./scripts/setup

- name: Run server
run: ./scripts/server & SERVER_PID=$!
run: |
./scripts/server >/dev/null 2>&1 &
SERVER_PID=$!
- name: Run test script
run: ./scripts/test
Expand Down

0 comments on commit 1e1b894

Please sign in to comment.