From 7233b814a4c8f4a91c44522742a63cabc2c1d9eb Mon Sep 17 00:00:00 2001 From: Diego Barahona Date: Tue, 23 Aug 2022 16:32:31 -0600 Subject: [PATCH] ci: skip waiting for server start --- .github/workflows/test.yaml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 351b037..369a831 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -3,6 +3,7 @@ name: Test Features on: pull_request: paths: + - .github/workflows/test.yaml - packages/web/** - packages/features/** - yarn.lock @@ -35,7 +36,8 @@ jobs: - name: setup yarn run: | yarn install --frozen-lockfile --check-files - yarn bootstrap + npx lerna bootstrap + find . -name ".env.example" | sed "p;s/\.example//" | xargs -n2 cp -f - name: Start test env timeout-minutes: 1 run: | @@ -49,8 +51,9 @@ jobs: tail -f $TMPFILE & echo "PID2=$!" >> $GITHUB_ENV - while ! grep "To access the server" $TMPFILE - do sleep 1; done + sleep 10 + # while ! grep "To access the server" $TMPFILE + # do sleep 1; done - name: Execute integration test with app timeout-minutes: 5 run: |