From f2e28f45c87d314509cb61924acaedb722df1af6 Mon Sep 17 00:00:00 2001 From: Alec Gibson <12036746+alecgibson@users.noreply.github.com> Date: Tue, 21 Feb 2023 18:18:07 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=E2=80=8D=E2=99=80=EF=B8=8F=20Don't?= =?UTF-8?q?=20fail=20fast?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sometimes the build can be a bit flaky, and fast fail can be quite annoying in these cases. This change sets [`fail-fast`][1] to `false` (it defaults `true`). [1]: https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstrategyfail-fast --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b213373..30c4d4d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -17,6 +17,7 @@ jobs: name: Node.js ${{ matrix.node }} + mongoDB ${{ matrix.mongodb }} runs-on: ubuntu-latest strategy: + fail-fast: false matrix: node: - 14