From 40a4c4d068b5e9b241014beb6ddd40ff3021770e Mon Sep 17 00:00:00 2001 From: Kallinikos Milonakis Date: Fri, 11 Sep 2026 12:57:43 +0300 Subject: [PATCH] ci: run the main test matrix on windows-latest as well MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds a windows-latest / Node 24 entry to the Test Main Matrix so the Windows-only failures that #1450 fixed cannot come back silently. tests/integration is excluded on Windows for now: 50 of its 58 cases fail there for reasons in the test harness (memfs volume snapshots expect `/out/…` and receive `\out/…`), unrelated to the code under test. Every other workspace passes on Windows, so the filter keeps the matrix honest for all of them rather than skipping the platform entirely. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_018U3wcP5Qm39cas5MtVVabw --- .github/workflows/test-main-matrix.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-main-matrix.yml b/.github/workflows/test-main-matrix.yml index a0ebf6171..5b11cfa8f 100644 --- a/.github/workflows/test-main-matrix.yml +++ b/.github/workflows/test-main-matrix.yml @@ -12,13 +12,20 @@ permissions: jobs: test_main_matrix: - name: Tests [Node ${{ matrix.node_version }}] + name: Tests [${{ matrix.os }}, Node ${{ matrix.node_version }}] runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: node_version: ['18', '20', '22', '24', '26'] os: [ubuntu-latest] + include: + # tests/integration is not green on Windows yet (50 of its 58 cases fail, + # for several unrelated reasons), so that one workspace is excluded there + # until it is. Every other workspace passes on Windows and stays covered. + - os: windows-latest + node_version: '24' + filter: --filter=!integration-test steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # tag=v4.2.2 @@ -28,4 +35,4 @@ jobs: node-version: ${{ matrix.node_version }} - name: Run tests - run: pnpm test + run: pnpm turbo run test ${{ matrix.filter }}