diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f9a4c0e0f..7c84f6eca 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -166,8 +166,9 @@ jobs: strategy: fail-fast: false matrix: - shardIndex: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20] - shardTotal: [20] + # TEMP: smoke-testing MSRC ci.yml changes. Revert to [1..20] / [20] before merging. + shardIndex: [1] + shardTotal: [1] steps: - uses: actions/checkout@v4 - name: Use Node.js 18.x @@ -296,9 +297,11 @@ jobs: echo "::add-mask::$MONGO_READONLY_TESTACCOUNT_TOKEN" echo MONGO_READONLY_TESTACCOUNT_TOKEN=$MONGO_READONLY_TESTACCOUNT_TOKEN >> $GITHUB_ENV - name: List test files for shard ${{ matrix['shardIndex'] }} of ${{ matrix['shardTotal']}} - run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --list + # TEMP: smoke-testing MSRC ci.yml changes. Revert before merging. + run: npx playwright test test/component-fixtures/searchableDropdown/searchableDropdown.spec.ts --project="Google Chrome" --grep "renders subscription dropdown with label and placeholder" --list - name: Run test shard ${{ matrix['shardIndex'] }} of ${{ matrix['shardTotal']}} - run: npx playwright test --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --workers=3 + # TEMP: smoke-testing MSRC ci.yml changes. Revert before merging. + run: npx playwright test test/component-fixtures/searchableDropdown/searchableDropdown.spec.ts --project="Google Chrome" --grep "renders subscription dropdown with label and placeholder" --workers=1 - name: Upload shard blob-report to Azure Storage if: ${{ !cancelled() }} env: