From fe1c52f2f7d7c55e7d87584dfed40a7306d1f872 Mon Sep 17 00:00:00 2001 From: Anton Nikolaev Date: Mon, 4 May 2020 04:10:02 -0700 Subject: [PATCH] Disable cancelling all Node CI jobs if one of them failed (#1096) Summary: Pull Request resolved: https://github.com/facebook/flipper/pull/1096 Disable cancelling all Node CI jobs if one of them failed. This will help to detect whether build is failing on all OSes (linux, mac, windows) or only some of them. Reviewed By: mweststrate Differential Revision: D21370606 fbshipit-source-id: 86cb3f1a2eb45e2832c5770414c0ca58e0869b66 --- .github/workflows/nodejs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 925e652b8..55c3aa4d4 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,6 +11,7 @@ jobs: desktop-directory: ./desktop strategy: + fail-fast: false matrix: node-version: [12.x] os: ['ubuntu-latest', 'windows-latest', 'macos-latest']