From 0009d11c4a47bbb2c6283c2bbd99522efb220db3 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Sun, 27 Oct 2024 02:24:14 -0700 Subject: [PATCH] ci: run test and compatibility tests separately in CI --- .github/workflows/CI.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 22b8a100..fc434f98 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -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)