diff --git a/.github/workflows/test:smoke.yml b/.github/workflows/test:smoke.yml index fa3ac9b..bdaa352 100644 --- a/.github/workflows/test:smoke.yml +++ b/.github/workflows/test:smoke.yml @@ -27,7 +27,8 @@ jobs: run: node dist/main --help - name: Smoke start command - run: (node dist/main start -v | tee >(grep -q "🔥 Everything is done! 🔥" && pkill -P $$); [ $? -eq 143 ]) + # run: (node dist/main start -v | tee >(grep -q "🔥 Everything is done! 🔥" && pkill -P $$); [ $? -eq 143 ]) + run: (node dist/main start -v & echo $!; tail -f /dev/null & wait $! | grep -q "Starting Topos-Playground..." && pkill -P $(jobs -p) && echo "Success" || echo "Error") 2>/dev/null - name: Smoke clean command run: node dist/main clean -v