[ci] Increase DevTools test shards and bump timeout (#35459)
[ci] Increase DevTools test shards and bump timeout - Increase DevTools test shards from 3 to 5 - Bump timeout to 20s --- [//]: # (BEGIN SAPLING FOOTER) Stack created with [Sapling](https://sapling-scm.com). Best reviewed with [ReviewStack](https://reviewstack.dev/facebook/react/pull/35459). * #35458 * __->__ #35459
lauren committed
Jan 6, 2026 at 18:23 UTC
00908be9ff2d033ab5340e2a250b6288909d41a0
2 files changed
+6
-4
.github/workflows/runtime_build_and_test.yml
+5
-3
@@ -454,9 +454,11 @@ jobs:
454
fail-fast: false
455
matrix:
456
shard:
457
- - 1/3
458
- - 2/3
459
- - 3/3
457
+ - 1/5
458
+ - 2/5
459
+ - 3/5
460
+ - 4/5
461
+ - 5/5
462
runs-on: ubuntu-latest
463
steps:
464
- uses: actions/checkout@v4
packages/react-devtools-shared/src/__tests__/profilerContext-test.js
+1
-1
@@ -654,7 +654,7 @@ describe('ProfilerContext', () => {
654
expect(store.profilerStore.isProfilingBasedOnUserInput).toBe(false);
655
656
document.body.removeChild(profilerContainer);
657
- });
657
+ }, 20000);
658
659
it('should navigate between commits when the keyboard shortcut is pressed', async () => {
660
const Parent = () => <Child />;