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 8c06d7e commit 0009d11Copy full SHA for 0009d11
.github/workflows/CI.yml
@@ -175,7 +175,19 @@ jobs:
175
timeout_minutes: 5
176
max_attempts: 1
177
command: |
178
- pnpm run test
+ pnpm run clean.temp
179
+ pnpm run test.unit
180
+ continue-on-error: true
181
+
182
+ - name: Test Compatibility
183
+ if: ${{ !matrix.docker }}
184
+ uses: nick-fields/retry@v3
185
+ with:
186
+ timeout_minutes: 5
187
+ max_attempts: 1
188
+ command: |
189
190
+ pnpm run test.compat
191
continue-on-error: true
192
193
- name: Test Electron (Main)
0 commit comments