Skip to content

Commit

Permalink
Fix(ci) downgrade ubuntu version on playwright jobs (#19339)
Browse files Browse the repository at this point in the history
* Fix: downgrading ubuntu version to 22.04 on playwright jobs

* Fix: indentation issue in playwright skip jobs
  • Loading branch information
pellejador authored Jan 13, 2025
1 parent d0c4cfc commit 21dd3e4
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/playwright-mysql-e2e-skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
playwright-ci-mysql:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2]
shardTotal: [2]
fail-fast: false
matrix:
shardIndex: [1, 2]
shardTotal: [2]
steps:
- run: 'echo "Step is not required"'
2 changes: 1 addition & 1 deletion .github/workflows/playwright-mysql-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:

jobs:
playwright-ci-mysql:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
environment: test
strategy:
fail-fast: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/playwright-postgresql-e2e-skip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ jobs:
playwright-ci-postgresql:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
shardIndex: [1, 2]
shardTotal: [2]
fail-fast: false
matrix:
shardIndex: [1, 2]
shardTotal: [2]
steps:
- run: 'echo "Step is not required"'
2 changes: 1 addition & 1 deletion .github/workflows/playwright-postgresql-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ concurrency:

jobs:
playwright-ci-postgresql:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
environment: test
strategy:
fail-fast: false
Expand Down

0 comments on commit 21dd3e4

Please sign in to comment.