Skip to content

Commit

Permalink
ci: clean tmp due to permission issues on windows
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya authored Nov 5, 2024
1 parent a0137e4 commit 028169e
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,21 +175,27 @@ 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
with:
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
Expand Down

0 comments on commit 028169e

Please sign in to comment.