From 51153c13b97d6f4392d4291a03597bf99feb2243 Mon Sep 17 00:00:00 2001 From: Will Binns-Smith Date: Tue, 26 Apr 2022 10:03:44 -0700 Subject: [PATCH] GitHub Actions: disable fail-fast for integration_tests (#8007) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92ecff145aa..d3de8dcd6ff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -66,6 +66,9 @@ jobs: matrix: node: [14, 16] os: [ubuntu-latest, macos-latest, windows-latest] + # These tend to be quite flakey, so one failed instance shouldn't stop + # others from potentially succeeding + fail-fast: false runs-on: ${{matrix.os}} steps: - uses: actions/checkout@v2