From 50e1d5cf66cb8b0d48d9e173b15982be67863a58 Mon Sep 17 00:00:00 2001 From: Sergey Ratiashvili Date: Thu, 14 Dec 2023 16:47:23 +0100 Subject: [PATCH] fix: split workflow in 2 --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 384294de..8e5be336 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -88,4 +88,6 @@ jobs: yarn build-images - run: make compile - name: Run tests - run: cd integration_tests && yarn test \ No newline at end of file + run: | + cd integration_tests && yarn vitest --run shard 1/2 --bail 1 + cd integration_tests && yarn vitest --run shard 2/2 --bail 1 \ No newline at end of file