Skip to content

Commit 028169e

Browse files
authored
ci: clean tmp due to permission issues on windows
1 parent a0137e4 commit 028169e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,21 +175,27 @@ jobs:
175175
timeout_minutes: 5
176176
max_attempts: 1
177177
command: |
178-
pnpm run clean.temp
179178
pnpm run test.unit
180179
continue-on-error: true
181180

181+
- name: Clean Tmp
182+
run: rm -rf ./tmp
183+
shell: bash
184+
182185
- name: Test Compatibility
183186
if: ${{ !matrix.docker }}
184187
uses: nick-fields/retry@v3
185188
with:
186189
timeout_minutes: 5
187190
max_attempts: 1
188191
command: |
189-
pnpm run clean.temp
190192
pnpm run test.unit.compat
191193
continue-on-error: true
192194

195+
- name: Clean Tmp
196+
run: rm -rf ./tmp
197+
shell: bash
198+
193199
- name: Test Electron Windows/MacOS
194200
if: "${{ !matrix.docker }}"
195201
uses: nick-fields/retry@v3

0 commit comments

Comments
 (0)