From 34e5f9fe292457834b0703193ead2dad984a8257 Mon Sep 17 00:00:00 2001 From: titanism <101466223+titanism@users.noreply.github.com> Date: Tue, 30 Apr 2024 14:24:21 -0500 Subject: [PATCH] fix: exclude node v14 for macos (per ) (per ) --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5d1a8de..a304d25 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,9 @@ jobs: - 14 - 16 - 18 + exclude: + - os: macos-latest + node: 14 name: Node ${{ matrix.node_version }} on ${{ matrix.os }} steps: - uses: actions/checkout@v3