From 61c2ee424d6a3f2d93dd8493a151d775a359d680 Mon Sep 17 00:00:00 2001 From: Annie Ke Date: Tue, 25 May 2021 17:17:54 -0700 Subject: [PATCH] add wait for sequencer --- .github/workflows/sync-tests.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync-tests.yml b/.github/workflows/sync-tests.yml index 24fd968cd98a..b2539aede314 100644 --- a/.github/workflows/sync-tests.yml +++ b/.github/workflows/sync-tests.yml @@ -38,12 +38,11 @@ jobs: - name: Bring the stack up working-directory: ./ops - run: docker-compose up -d + run: docker-compose up -d && ./scripts/wait-for-sequencer.sh - name: Run the sync tests working-directory: ./integration-tests - run: yarn test:sync - - # - name: Run the sync tests - # working-directory: ./ops - # run: docker-compose run sync_tests + run: | + yarn + yarn build + yarn test:sync