From 1b0d7acfdba2e8971285adb62a39c688d684e9d7 Mon Sep 17 00:00:00 2001 From: Christian Emmer <10749361+emmercm@users.noreply.github.com> Date: Fri, 20 Sep 2024 19:19:05 -0700 Subject: [PATCH] Debug --- .github/workflows/node-test.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node-test.yml b/.github/workflows/node-test.yml index 2dcb823..f3bdb62 100644 --- a/.github/workflows/node-test.yml +++ b/.github/workflows/node-test.yml @@ -51,12 +51,20 @@ jobs: if: ${{ needs.path-filter.outputs.changes == 'true' }} runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [ ubuntu-latest, macos-13, macos-14, windows-latest ] + #os: [ ubuntu-latest, macos-13, macos-14, windows-latest ] + os: [ macos-14 ] node-version: - lts # Using this instead of v16.6.0 to get npm v8.1+ to fix workspace issues - 16.12.0 + - 16.13.0 + - 16.14.0 + - 16.15.0 + - 16.16.0 + - 16.17.0 + - 16.18.0 steps: # Setup and install - uses: actions/checkout@v4