Skip to content

Commit 0009d11

Browse files
authored
ci: run test and compatibility tests separately in CI
1 parent 8c06d7e commit 0009d11

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

.github/workflows/CI.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,19 @@ jobs:
175175
timeout_minutes: 5
176176
max_attempts: 1
177177
command: |
178-
pnpm run test
178+
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+
pnpm run clean.temp
190+
pnpm run test.compat
179191
continue-on-error: true
180192

181193
- name: Test Electron (Main)

0 commit comments

Comments
 (0)