From 21a38181decd7b3608241b9bed84bcf1c7ebe119 Mon Sep 17 00:00:00 2001 From: Jayden Pyles Date: Sat, 10 May 2025 09:44:43 -0500 Subject: [PATCH] fix: add cypress tests to CI [skip ci] --- .github/actions/run-cypress-tests/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/run-cypress-tests/action.yaml b/.github/actions/run-cypress-tests/action.yaml index 84e1591..76a65a0 100644 --- a/.github/actions/run-cypress-tests/action.yaml +++ b/.github/actions/run-cypress-tests/action.yaml @@ -25,7 +25,7 @@ runs: shell: bash run: | for i in {1..10}; do - curl -s http://127.0.0.1:3000 && echo "Frontend is ready" && exit 0 + curl -s http://127.0.0.1:80 && echo "Frontend is ready" && exit 0 echo "Waiting for frontend to be ready... attempt $i" sleep 1 done