Skip to content

Commit

Permalink
ci: run electron tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Nov 5, 2024
1 parent 9228083 commit a0137e4
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,18 @@ jobs:
pnpm run test.unit.compat
continue-on-error: true

- name: Test Electron (Main)
- name: Test Electron Windows/MacOS
if: "${{ !matrix.docker }}"
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 1
command: |
pnpm install -g electron@latest
pnpm run test.electron.main
continue-on-error: true

- name: Test Electron Linux
if: "${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
uses: nick-fields/retry@v3
with:
Expand Down

0 comments on commit a0137e4

Please sign in to comment.