From 6722e736ea63ca9cc53ce7a8d11e630e4b6bb23a Mon Sep 17 00:00:00 2001 From: Haoqun Jiang Date: Tue, 30 Nov 2021 18:32:10 +0800 Subject: [PATCH] ci: turn off fail-fast strategy The failing unit tests can not be reproduced consistently. So I think we'd better continue running tests in all other environments and see if it is a universal issue. If not, we'd better go on with the new Cypress version and try to resolve the flaky test issue on the Cypress side. Otherwise we may have to roll back to the previous version. --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 41ef4171..814bfd78 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,7 @@ jobs: test: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: - ubuntu-latest -- 2.47.3