Skip to content

Commit 20c6f1c

Browse files
committed
sleep instead of wait...
wait is failing to find the studio-ui server, despite evidence it is launching
1 parent 43f1922 commit 20c6f1c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/ci-pkg-cli.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,10 @@ jobs:
100100
- name: Wait for studio server to be ready
101101
working-directory: packages/cli/testproject-empty
102102
run: |
103-
echo "Waiting for studio server on http://localhost:7174..."
104-
npx wait-on http://localhost:7174 --timeout 180000 || (echo "wait-on failed, showing studio log:" && cat studio.log && exit 1)
103+
echo "Giving studio 3 minutes to build and start..."
104+
sleep 180
105+
echo "Done waiting, checking studio log:"
106+
tail -20 studio.log || echo "No log file"
105107
106108
- name: Run custom questions studio mode tests
107109
working-directory: packages/cli

0 commit comments

Comments
 (0)