We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb3ad21 commit a834e17Copy full SHA for a834e17
1 file changed
.github/workflows/ci-test-e2e.yml
@@ -263,12 +263,14 @@ jobs:
263
QASE_REPORT: ${{ github.ref == 'refs/heads/develop' && 'true' || '' }}
264
CI: true
265
PLAYWRIGHT_RETRIES: ${{ inputs.retries }}
266
+ E2E_SHARD: ${{ matrix.shard }}
267
+ E2E_TOTAL_SHARD: ${{ inputs.total-shard }}
268
working-directory: ./apps/meteor
269
run: |
270
set -o xtrace
271
272
yarn prepare
- yarn test:e2e --shard=${{ matrix.shard }}/${{ inputs.total-shard }}
273
+ yarn test:e2e --shard="$E2E_SHARD/$E2E_TOTAL_SHARD"
274
275
- name: Merge ui coverage files
276
if: inputs.type == 'ui' && inputs.coverage == matrix.mongodb-version
0 commit comments