From 89c741f0f7b2fdaa551b14d860c12b8d0465a441 Mon Sep 17 00:00:00 2001 From: Peter Muriuki Date: Mon, 27 Jan 2025 14:01:21 +0300 Subject: [PATCH] Allow windows CI to fail --- .github/workflows/cd-test.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/cd-test.yml b/.github/workflows/cd-test.yml index 5d609804a..184bd2a19 100644 --- a/.github/workflows/cd-test.yml +++ b/.github/workflows/cd-test.yml @@ -13,6 +13,8 @@ jobs: matrix: node-version: [22.x] os: [ubuntu-latest, windows-latest] + allow-failure: [false, true] + fail-fast: false # Ensure the workflow doesn't stop when one matrix combination fails runs-on: ${{ matrix.os }} steps: @@ -49,3 +51,5 @@ jobs: directory: ./coverage fail_ci_if_error: true verbose: true + + continue-on-error: ${{ matrix.os == 'windows-latest' }}