diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 05144426..55e4dd4b 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -175,10 +175,13 @@ jobs: timeout_minutes: 5 max_attempts: 1 command: | - pnpm run clean.temp pnpm run test.unit continue-on-error: true + - name: Clean Tmp + run: rm -rf ./tmp + shell: bash + - name: Test Compatibility if: ${{ !matrix.docker }} uses: nick-fields/retry@v3 @@ -186,10 +189,13 @@ jobs: timeout_minutes: 5 max_attempts: 1 command: | - pnpm run clean.temp pnpm run test.unit.compat continue-on-error: true + - name: Clean Tmp + run: rm -rf ./tmp + shell: bash + - name: Test Electron Windows/MacOS if: "${{ !matrix.docker }}" uses: nick-fields/retry@v3