We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0137e4 commit 028169eCopy full SHA for 028169e
.github/workflows/CI.yml
@@ -175,21 +175,27 @@ jobs:
175
timeout_minutes: 5
176
max_attempts: 1
177
command: |
178
- pnpm run clean.temp
179
pnpm run test.unit
180
continue-on-error: true
181
+ - name: Clean Tmp
182
+ run: rm -rf ./tmp
183
+ shell: bash
184
+
185
- name: Test Compatibility
186
if: ${{ !matrix.docker }}
187
uses: nick-fields/retry@v3
188
with:
189
190
191
192
pnpm run test.unit.compat
193
194
195
196
197
198
199
- name: Test Electron Windows/MacOS
200
if: "${{ !matrix.docker }}"
201
0 commit comments