From 43d776fe1ab8fb7048cd2d481296a1a0b026305f Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Fri, 3 Dec 2021 14:22:32 +0800 Subject: [PATCH] ci: tolerant CI failure on windows platform It is a known issue in Cypress Component Testing with Vite: https://docs.cypress.io/guides/component-testing/introduction#Experimental > May flake in resource-constrained CI machines --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77b48618..7981ee2d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,7 @@ on: jobs: test: runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.os == 'windows-latest' }} strategy: fail-fast: false matrix: -- 2.39.5