From cb96e7a0cdef09686e2ac9c7c6c20ff2d9233d36 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sat, 31 May 2025 20:25:25 -0700 Subject: [PATCH 1/3] chore(ci): Add additional Node versions to matrix --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index bbfaa3f..6307e2e 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -31,7 +31,7 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14, 16] + node: [10, 12, 14, 16, 18, 20, 22, 24] os: [ubuntu-latest, windows-latest, macos-latest] steps: From ae89925fb15f4aca8fd7e2a466bd7adfd9ff910e Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sat, 31 May 2025 20:25:40 -0700 Subject: [PATCH 2/3] chore(ci): Temporarily only build on x86_64 MacOS --- .github/workflows/dev.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6307e2e..6d5584d 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -32,7 +32,7 @@ jobs: fail-fast: false matrix: node: [10, 12, 14, 16, 18, 20, 22, 24] - os: [ubuntu-latest, windows-latest, macos-latest] + os: [ubuntu-latest, windows-latest, macos-13] steps: - name: Clone repository From 736a53661831ec920b018687faf34f63336169eb Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Sat, 31 May 2025 20:31:00 -0700 Subject: [PATCH 3/3] chore(ci): Remove Node 10 due to Streamx breaking compatibility --- .github/workflows/dev.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index 6d5584d..5cbe0aa 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -31,7 +31,8 @@ jobs: strategy: fail-fast: false matrix: - node: [10, 12, 14, 16, 18, 20, 22, 24] + # Node 10 is removed until Streamx restores compatibility + node: [12, 14, 16, 18, 20, 22, 24] os: [ubuntu-latest, windows-latest, macos-13] steps: