From 00f4ba0eebd8d57a08be75c278c49ce612757fa1 Mon Sep 17 00:00:00 2001 From: Richard Moore Date: Mon, 13 Jul 2020 09:28:08 -0400 Subject: [PATCH] Prevent a CI job failure from killing the workflow. --- .github/workflows/nodejs.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 4c49a511d..50908cc6c 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -11,6 +11,8 @@ jobs: runs-on: ubuntu-latest + continue-on-error: true + strategy: matrix: node-version: [8.x, 10.x, 12.x, 13.x ] @@ -31,6 +33,8 @@ jobs: runs-on: ubuntu-latest + continue-on-error: true + strategy: matrix: module: [ 'esm', 'umd' ]