Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Lexica][CI] run extended tests for safari in mac-os and chrome/firefox in linux/windows #6466

Merged
merged 2 commits into from
Jul 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 23 additions & 8 deletions .github/workflows/call-e2e-all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,27 @@ on:
workflow_call:

jobs:
mac:
mac-rich:
strategy:
matrix:
node-version: [18.18.0]
browser: ['chromium', 'firefox', 'webkit']
Sahejkm marked this conversation as resolved.
Show resolved Hide resolved
editor-mode: ['rich-text', 'plain-text']
browser: ['webkit', 'chromium', 'firefox']
editor-mode: ['rich-text']
events-mode: ['modern-events']
uses: ./.github/workflows/call-e2e-test.yml
with:
os: 'macos-latest'
node-version: ${{ matrix.node-version }}
browser: ${{ matrix.browser }}
editor-mode: ${{ matrix.editor-mode }}
events-mode: ${{ matrix.events-mode }}

mac-plain:
strategy:
matrix:
node-version: [18.18.0]
browser: ['webkit']
editor-mode: ['plain-text']
events-mode: ['modern-events']
uses: ./.github/workflows/call-e2e-test.yml
with:
Expand Down Expand Up @@ -56,7 +71,7 @@ jobs:
strategy:
matrix:
node-version: [18.18.0]
browser: ['chromium', 'firefox', 'webkit']
browser: ['webkit']
uses: ./.github/workflows/call-e2e-test.yml
with:
os: 'macos-latest'
Expand Down Expand Up @@ -94,7 +109,7 @@ jobs:
prod:
strategy:
matrix:
os: ['macos-latest']
os: ['ubuntu-latest']
node-version: [18.18.0]
browser: ['chromium']
editor-mode: ['rich-text']
Expand All @@ -111,7 +126,7 @@ jobs:
collab-prod:
strategy:
matrix:
os: ['macos-latest']
os: ['ubuntu-latest']
node-version: [18.18.0]
browser: ['chromium']
editor-mode: ['rich-text-with-collab']
Expand All @@ -134,7 +149,7 @@ jobs:
prod: [false]
uses: ./.github/workflows/call-e2e-test.yml
with:
os: 'macos-latest'
os: 'ubuntu-latest'
browser: 'chromium'
node-version: 18.18.0
events-mode: 'modern-events'
Expand All @@ -151,7 +166,7 @@ jobs:
events-mode: ['modern-events']
uses: ./.github/workflows/call-e2e-test.yml
with:
os: 'macos-latest'
os: 'ubuntu-latest'
flaky: true
node-version: ${{ matrix.node-version }}
browser: ${{ matrix.browser }}
Expand Down
Loading