Fix for marketplace cypress host-url

This commit is contained in:
Adish M 2024-02-16 14:27:51 +05:30
parent 6978d19ba3
commit 2d94d32c4e

View file

@ -60,7 +60,7 @@ jobs:
- name: Set up environment variables
run: |
echo "TOOLJET_HOST=http://localhost:80" >> .env
echo "TOOLJET_HOST=http://localhost:3000" >> .env
echo "LOCKBOX_MASTER_KEY=cd97331a419c09387bef49787f7da8d2a81d30733f0de6bed23ad8356d2068b2" >> .env
echo "SECRET_KEY_BASE=7073b9a35a15dd20914ae17e36a693093f25b74b96517a5fec461fc901c51e011cd142c731bee48c5081ec8bac321c1f259ef097ef2a16f25df17a3798c03426" >> .env
echo "PG_DB=tooljet_development" >> .env
@ -104,7 +104,7 @@ jobs:
- name: Wait for the server to be ready
run: |
timeout 1500 bash -c '
until curl --silent --fail http://localhost:80; do
until curl --silent --fail http://localhost:3000; do
sleep 5
done'