From 361a7528a1430c6817e041bc3a940ce7f2c4b605 Mon Sep 17 00:00:00 2001 From: Lenz Weber-Tronic Date: Fri, 8 Mar 2024 16:44:43 +0100 Subject: [PATCH] adjust --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1d67c892..e0f4ab0d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,11 +28,11 @@ jobs: - run: yarn install --immutable - name: Calculate Matrix id: version - # Replace 'true' with your condition - run: yarn matrix >> $GITHUB_OUTPUT + run: yarn matrix | tee $GITHUB_OUTPUT test: name: Unit Tests + needs: matrix if: | (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name) runs-on: ubuntu-latest @@ -52,6 +52,7 @@ jobs: - run: yarn workspaces foreach --all --include "@apollo/*" run test | tee $GITHUB_STEP_SUMMARY; exit ${PIPESTATUS[0]} packageShapes: name: Test Bundles + needs: matrix if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name runs-on: ubuntu-latest strategy: @@ -69,6 +70,7 @@ jobs: - run: yarn workspaces foreach --all --include "@apollo/*" run test-bundle | tee $GITHUB_STEP_SUMMARY; exit ${PIPESTATUS[0]} tests_playwright: name: Integration Tests + needs: matrix if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name runs-on: ubuntu-latest strategy: