From 85907da8a4c8468046db7f42bc20fe7326f38dc3 Mon Sep 17 00:00:00 2001 From: Jonathan Desrosiers Date: Thu, 25 Mar 2021 15:09:00 +0000 Subject: [PATCH] Build/Test Tools: Disable `fail-fast` for the NPM testing workflow. This disables the `fail-fast` option in the GitHub Actions workflow for testing NPM. This allows all jobs in the test matrix to complete, even if one fails, painting a clear picture of where the issue lies. Follow up to [50435]. See #52625. git-svn-id: https://develop.svn.wordpress.org/trunk@50579 602fd350-edb4-49c9-b593-d223f7449a82 --- .github/workflows/test-npm.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test-npm.yml b/.github/workflows/test-npm.yml index bdcd9d249d..8a3d9db82e 100644 --- a/.github/workflows/test-npm.yml +++ b/.github/workflows/test-npm.yml @@ -60,6 +60,7 @@ jobs: if: ${{ github.repository == 'WordPress/wordpress-develop' || github.event_name == 'pull_request' }} needs: prepare-workflow strategy: + fail-fast: false matrix: os: [ ubuntu-latest, windows-latest ]