From 858289690fdacd46f67c6c1f21efec207f62f55a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Dan?= Date: Tue, 29 Aug 2023 17:05:52 +0200 Subject: [PATCH] ci: test new command for start --- .github/workflows/test:smoke.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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