-
Pre-Turbo, we were able to shard test execution using something like this: test:
name: Test
steps:
[..]
- name: Run Tests
run: |
pnpm jest --bail --ci --passWithNoTests --coverage --collectCoverageFrom="./src/**" --shard ${{ matrix.concurrency }}/10
strategy:
matrix:
concurrency:
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10 What would be the equivalent of this in Turbo setup? |
Beta Was this translation helpful? Give feedback.
Answered by
Hyodori04
Feb 2, 2024
Replies: 2 comments
-
I think turbo not work with jest shard option |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mehulkar
-
@mehulkar Is there anything equivalent to this available? Or even possible? |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think turbo not work with jest shard option