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
This commit is contained in:
Jonathan Desrosiers 2021-03-25 15:09:00 +00:00
parent 7efa96da8a
commit 85907da8a4

View File

@ -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 ]