Skip to content

Commit bba2f31

Browse files
committed
fix: suppress output of curl
1 parent 9650fc6 commit bba2f31

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ jobs:
6767
USER_SERVICE_URL: ${{ vars.USER_SERVICE_URL }}
6868
QUESTION_SERVICE_URL: ${{ vars.QUESTION_SERVICE_URL }}
6969
run: |
70-
curl -sSL $QUESTION_SERVICE_URL
71-
curl -fsSL $USER_SERVICE_URL
72-
curl -fsSL $FRONTEND_URL
70+
curl -sSL -o /dev/null $QUESTION_SERVICE_URL
71+
curl -fsSL -o /dev/null $USER_SERVICE_URL
72+
curl -fsSL -o /dev/null $FRONTEND_URL
7373
7474
# We can add more tests here

0 commit comments

Comments
 (0)