Skip to content

Commit

Permalink
adjust
Browse files Browse the repository at this point in the history
  • Loading branch information
phryneas committed Mar 8, 2024
1 parent 64bfbe5 commit 361a752
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand All @@ -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:
Expand Down

0 comments on commit 361a752

Please sign in to comment.