diff --git a/.github/workflows/pull-request-validation.yml b/.github/workflows/pull-request-validation.yml index 95f7efcf54..d9d0df1f41 100644 --- a/.github/workflows/pull-request-validation.yml +++ b/.github/workflows/pull-request-validation.yml @@ -126,7 +126,14 @@ jobs: - run: npm run build --if-present - name: Run jest --testPathPattern packages/ - run: ./node_modules/.bin/jest --testPathPattern packages/ + run: | + ./node_modules/.bin/jest \ + --ci \ + --coverage true \ + --forceExit \ + --logHeapUsage \ + --runInBand \ + --testPathPattern packages/ timeout-minutes: 10 - if: always()