From 319e7ebd5e1d680ba0676c6e18d12c0b0def1a0f 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]