From 7cdc5057f9c2eda0a381d534fbb754590f3822f4 Mon Sep 17 00:00:00 2001 From: tunnckoCore <5038030+tunnckoCore@users.noreply.github.com> Date: Thu, 16 Apr 2026 03:56:17 +0300 Subject: [PATCH 1/2] chore: drop old macOS CI matrix entries --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2462fc4d..aacd4ff3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -66,6 +66,11 @@ jobs: matrix: os: [ubuntu-latest, macos-latest] node-version: [18, 20, 22, "lts/*"] + exclude: + - os: macos-latest + node-version: 18 + - os: macos-latest + node-version: 20 steps: - name: Checkout From a0da3668434261b85f6408da649088565328f234 Mon Sep 17 00:00:00 2001 From: tunnckoCore <5038030+tunnckoCore@users.noreply.github.com> Date: Thu, 16 Apr 2026 04:02:19 +0300 Subject: [PATCH 2/2] test: raise flaky fileWriteStreamHandler timeout --- test/integration/file-write-stream-handler-option.test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/file-write-stream-handler-option.test.js b/test/integration/file-write-stream-handler-option.test.js index 07e78bdf..f5f76d93 100644 --- a/test/integration/file-write-stream-handler-option.test.js +++ b/test/integration/file-write-stream-handler-option.test.js @@ -78,4 +78,4 @@ test("file write stream handler", (done) => { createReadStream(testFilePath).pipe(request); }); -}); +}, 7000);