From b77ef0bc57eade65442f3f03a39e931932d5b957 Mon Sep 17 00:00:00 2001 From: Delisa Mason Date: Mon, 26 Sep 2022 09:52:31 +0100 Subject: [PATCH] ci(electron): disable failing all jobs if one fails The electron pipeline is prone to spurious failures, and with the addition of rerunning only failed jobs, is easier to manage if flaked jobs are just restarted. --- .github/workflows/test-electron.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-electron.yml b/.github/workflows/test-electron.yml index 1bd3de4701..e68ef066b1 100644 --- a/.github/workflows/test-electron.yml +++ b/.github/workflows/test-electron.yml @@ -7,6 +7,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: electron: [ '^12.0.0', '^20.0.0' ] node-version: [12, 14]