wait while electron boots

This commit is contained in:
Kurt Hutten Irev-Dev
2024-08-13 21:25:48 +10:00
parent ed6c4397f2
commit da88ffaf49

View File

@ -462,7 +462,11 @@ jobs:
name: test-results-ubuntu-${{ github.sha }}
path: test-results/
- name: run electron
run: yarn electron:start &
run: |
yarn electron:start > electron.log 2>&1 &
while ! grep -q "built in" electron.log; do
sleep 1
done
- name: Run ubuntu/chrome flow (with retries)
id: retry
if: always()