We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfad7f9 commit 77d95fdCopy full SHA for 77d95fd
.github/workflows/build.yml
@@ -540,10 +540,19 @@ jobs:
540
uses: ./.github/actions/restore-cache
541
env:
542
DEPENDENCY_CACHE_KEY: ${{ needs.job_build.outputs.dependency_cache_key }}
543
- - name: Run tests
+
544
+ - name: Run affected tests
545
+ run: yarn test:pr:node
546
+ if: github.event_name == 'pull_request'
547
548
NODE_VERSION: ${{ matrix.node }}
549
550
+ - name: Run all tests
551
run: yarn test:ci:node
552
+ if: github.event_name != 'pull_request'
553
+ env:
554
+ NODE_VERSION: ${{ matrix.node }}
555
556
- name: Compute test coverage
557
uses: codecov/codecov-action@v4
558
with:
0 commit comments