From f92a853ab021082c3fd96caaf56f7ba080a98237 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Thu, 6 Apr 2023 16:26:18 +0200 Subject: [PATCH] fix(repo): combine commands --- .github/workflows/e2e-matrix.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 1aac1f1e9abe4..ff677f9be19cb 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -407,10 +407,7 @@ jobs: - name: Run e2e tests id: e2e-run - run: | - # each project has either "e2e" or "e2e-macos" target - yarn nx run-many --target=e2e --projects="${{ join(matrix.project) }}" --parallel=1 - yarn nx run-many --target=e2e-macos --projects="${{ join(matrix.project) }}" --parallel=1 + run: yarn nx run-many --target=e2e,e2e-macos --projects="${{ join(matrix.project) }}" --parallel=1 timeout-minutes: ${{ matrix.os_timeout }} env: GIT_AUTHOR_EMAIL: test@test.com