Skip to content

Commit a0137e4

Browse files
authored
ci: run electron tests on Windows
#672
1 parent 9228083 commit a0137e4

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

.github/workflows/CI.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,18 @@ jobs:
190190
pnpm run test.unit.compat
191191
continue-on-error: true
192192

193-
- name: Test Electron (Main)
193+
- name: Test Electron Windows/MacOS
194+
if: "${{ !matrix.docker }}"
195+
uses: nick-fields/retry@v3
196+
with:
197+
timeout_minutes: 5
198+
max_attempts: 1
199+
command: |
200+
pnpm install -g electron@latest
201+
pnpm run test.electron.main
202+
continue-on-error: true
203+
204+
- name: Test Electron Linux
194205
if: "${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
195206
uses: nick-fields/retry@v3
196207
with:

0 commit comments

Comments
 (0)