From 7f3a9f32bb88f41e7333ed7276ece4d2a8ca7336 Mon Sep 17 00:00:00 2001 From: Chirag Madlani <12962843+chirag-madlani@users.noreply.github.com> Date: Tue, 10 Sep 2024 12:32:58 +0530 Subject: [PATCH] fix playwright skip workflow to have metrix stratagy to comply with workflow (#17774) --- .github/workflows/playwright-mysql-e2e-skip.yml | 5 +++++ .github/workflows/playwright-postgresql-e2e-skip.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/playwright-mysql-e2e-skip.yml b/.github/workflows/playwright-mysql-e2e-skip.yml index 0f4cb74532c..73218c09539 100644 --- a/.github/workflows/playwright-mysql-e2e-skip.yml +++ b/.github/workflows/playwright-mysql-e2e-skip.yml @@ -31,5 +31,10 @@ on: jobs: playwright-ci-mysql: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + shardIndex: [1, 2] + shardTotal: [2] steps: - run: 'echo "Step is not required"' diff --git a/.github/workflows/playwright-postgresql-e2e-skip.yml b/.github/workflows/playwright-postgresql-e2e-skip.yml index 3db0dd5afa1..82f93279559 100644 --- a/.github/workflows/playwright-postgresql-e2e-skip.yml +++ b/.github/workflows/playwright-postgresql-e2e-skip.yml @@ -31,5 +31,10 @@ on: jobs: playwright-ci-postgresql: runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + shardIndex: [1, 2] + shardTotal: [2] steps: - run: 'echo "Step is not required"'