From dccc9fa4f4516e64aecc4a3baf5f62d7019c410d Mon Sep 17 00:00:00 2001 From: Alex Prudhomme <78121423+alexprudhomme@users.noreply.github.com> Date: Mon, 28 Oct 2024 15:45:26 -0400 Subject: [PATCH] Revert "temp" This reverts commit 478bd43c2504b5c26a1da0e0c810552aa8e13464. https://coveord.atlassian.net/browse/KIT-3684 --- .github/workflows/prbot.yml | 1 + scripts/ci/determine-shard.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/prbot.yml b/.github/workflows/prbot.yml index d5959f3cad4..68b0a948148 100644 --- a/.github/workflows/prbot.yml +++ b/.github/workflows/prbot.yml @@ -88,6 +88,7 @@ jobs: - uses: ./.github/actions/e2e-atomic-csp prepare-playwright-atomic: name: 'Determine Playwright E2E tests to run' + needs: build runs-on: ubuntu-latest env: maximumShards: 24 diff --git a/scripts/ci/determine-shard.mjs b/scripts/ci/determine-shard.mjs index d673af93526..4644abfe362 100644 --- a/scripts/ci/determine-shard.mjs +++ b/scripts/ci/determine-shard.mjs @@ -26,6 +26,7 @@ const [shardIndex, shardTotal] = allocateShards( maximumShards ); console.log('shardIndex:', shardIndex); +console.log('shardTotal:', shardTotal); setOutput(shardIndexOutputName, shardIndex); setOutput(shardTotalOutputName, shardTotal);