Skip to content

Commit

Permalink
ci: run test and compatibility tests separately in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Oct 27, 2024
1 parent 8c06d7e commit 0009d11
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,19 @@ jobs:
timeout_minutes: 5
max_attempts: 1
command: |
pnpm run test
pnpm run clean.temp
pnpm run test.unit
continue-on-error: true

- name: Test Compatibility
if: ${{ !matrix.docker }}
uses: nick-fields/retry@v3
with:
timeout_minutes: 5
max_attempts: 1
command: |
pnpm run clean.temp
pnpm run test.compat
continue-on-error: true

- name: Test Electron (Main)
Expand Down

0 comments on commit 0009d11

Please sign in to comment.