Skip to content

Commit

Permalink
warning: this commit will be force pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
bukowa committed Jun 28, 2024
1 parent d801d49 commit 222e792
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions .github/workflows/tests-e2e-js.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: "Test: UI E2E JS"

on:
schedule:
- cron: "20 04 * * *"
- cron: "20 04 * * *"
push:
branches:
- master
Expand All @@ -15,8 +15,21 @@ on:
jobs:

test:
strategy:
fail-fast: false
matrix:
include:
# - platform: 'macos-latest' # for Arm based macs (M1 and above).
# args: '--target aarch64-apple-darwin'
# - platform: 'macos-latest' # for Intel based macs.
# args: '--target x86_64-apple-darwin'
- platform: 'ubuntu-latest'
args: ''
- platform: 'windows-latest'
args: ''

timeout-minutes: 5
runs-on: ubuntu-latest
runs-on: ${{ matrix.platform }}
name: "Run UI E2E tests"
env:
# xvfb is slow to start
Expand Down Expand Up @@ -52,8 +65,14 @@ jobs:
.build
- name: Install Prerequisites
if: matrix.platform == 'ubuntu-latest'
run: |
. <(just prerequisites)
- name: Run UI E2E tests
- name: Run UI E2E tests Linux
if: matrix.platform == 'ubuntu-latest'
run: xvfb-run -a just test-e2e

- name: Run UI E2E tests Windows
if: matrix.platform == 'windows-latest'
run: just test-e2e

0 comments on commit 222e792

Please sign in to comment.