From ab3f3636ffec16f67b83eda012a62be45f3bd23c Mon Sep 17 00:00:00 2001 From: Jannis R Date: Tue, 4 Apr 2023 11:39:07 +0200 Subject: [PATCH] =?UTF-8?q?CI:=20run=20integration=20tests=20in=20parallel?= =?UTF-8?q?=20to=20unit=20tests=20=F0=9F=92=9A?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c6ee2c5e..26105536 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -31,7 +31,6 @@ jobs: - run: npm run test-unit integration-tests: - needs: unit-tests runs-on: ubuntu-latest strategy: matrix: @@ -56,7 +55,9 @@ jobs: - run: npm run test-integration e2e-tests: - needs: integration-tests + needs: | + unit-tests + integration-tests runs-on: ubuntu-latest strategy: matrix: