From 36391992fe42038e06d858c07f1ad6c828254ecf Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 13 Jun 2025 10:32:07 -0400 Subject: [PATCH 1/2] Use namespace runner for Windows jobs --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 52ff4097..fe8ab9d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false matrix: node: [18, 20, 22, 24] - os: [ubuntu-latest, macos-latest, windows-latest] + os: [ubuntu-latest, macos-latest, namespace-profile-windows-amd64] runs-on: ${{ matrix.os }} name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }} From 0f9f2cf8614eb00797106894fd6ac14f132c0077 Mon Sep 17 00:00:00 2001 From: Jordan Pittman Date: Fri, 13 Jun 2025 10:45:59 -0400 Subject: [PATCH 2/2] Use namespace for Linux and macOS --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fe8ab9d5..9ef3526d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,7 +10,10 @@ jobs: fail-fast: false matrix: node: [18, 20, 22, 24] - os: [ubuntu-latest, macos-latest, namespace-profile-windows-amd64] + os: + - namespace-profile-default + - namespace-profile-macos-arm64 + - namespace-profile-windows-amd64 runs-on: ${{ matrix.os }} name: Run Tests - Node v${{ matrix.node }} / ${{ matrix.os }}