From 43ae0791f74f68e02850201a64a6af693657b241 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Mon, 16 Dec 2019 16:47:56 +0200 Subject: [PATCH] CI: add `fail-fast: false` This will allow all builds to run even if one fails PR-URL: https://github.com/npm/cli/pull/601 Credit: @XhmikosR Close: #601 Reviewed-by: @ruyadorno --- .github/workflows/ci.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c2c475e0b6a7..542b90dfacd37 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,6 +5,7 @@ on: [push] jobs: build: strategy: + fail-fast: false matrix: node-version: [8.x, 10.x, 12.x] os: [ubuntu-latest, windows-latest]