From 5414fc25800a758001b0894cdc2085c0c39913f1 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 25 Aug 2022 06:49:21 -0700 Subject: [PATCH] Disable fail-fast on the testing CI jobs (#6080) - There are several reasons why these might fail that are irrelavent to the other pipelines. So we should just let them continue Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7ebb23ec34..9aaeec71f6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,6 +11,7 @@ jobs: name: Test runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: os: [ubuntu-20.04, macos-11, windows-2019] node-version: [16.x]