From 028169ecfe51e52acbfc558e8d967bb348be2112 Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Tue, 5 Nov 2024 00:47:38 -0800 Subject: [PATCH] ci: clean tmp due to permission issues on windows --- .github/workflows/CI.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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