Skip to content

Commit

Permalink
fix(github-action): run additional tests with ts-node and swc
Browse files Browse the repository at this point in the history
  • Loading branch information
bukowa committed Jun 29, 2024
1 parent 969f5f8 commit 230d045
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,15 +79,29 @@ jobs:
shell: "bash"
run: xvfb-run -a just test-e2e

- name: Linux - Run UI E2E tests with ts-node and swc
if: ${{ inputs.os == 'ubuntu-latest' }}
shell: "bash"
run: xvfb-run -a just test-e2e-fast

- name: Windows - Run UI E2E tests
if: ${{ inputs.os == 'windows-latest' }}
shell: "bash"
run: |
just browser-version-pending-update
just browser-version
just test-e2e
- name: Windows - Run UI E2E tests with ts-node and swc
if: ${{ inputs.os == 'windows-latest' }}
shell: "bash"
run: |
just test-e2e-fast
- name: MacOS - Run UI E2E tests
if: ${{ inputs.os == 'macos-latest' }}
shell: "bash"
run: just test-e2e

- name: MacOS - Run UI E2E tests with ts-node and swc
if: ${{ inputs.os == 'macos-latest' }}
shell: "bash"
run: just test-e2e-fast

0 comments on commit 230d045

Please sign in to comment.