From 4c3093f5ce3013b92157799efdbecd716749d903 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Mon, 22 Aug 2022 12:33:48 -0400 Subject: [PATCH] Disable fail-fast on the testing CI jobs - 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 --- .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]