We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9228083 commit a0137e4Copy full SHA for a0137e4
.github/workflows/CI.yml
@@ -190,7 +190,18 @@ jobs:
190
pnpm run test.unit.compat
191
continue-on-error: true
192
193
- - name: Test Electron (Main)
+ - 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
205
if: "${{ contains(matrix.os, 'ubuntu') && !matrix.docker }}"
206
uses: nick-fields/retry@v3
207
with:
0 commit comments