From 868b6de58b64f9f9328c57961fac7c89a68af9fa Mon Sep 17 00:00:00 2001 From: Ryan Dorson Date: Tue, 22 Oct 2024 19:15:40 +0000 Subject: [PATCH] fix(workflows): exclude node versions that don't have arm distributions from mac test workflow --- .github/workflows/nodejs.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 4422a1b..7b66906 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -66,6 +66,13 @@ jobs: os: [ubuntu-latest, windows-latest, macos-latest] node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x, 22.x] webpack-version: [latest] + exclude: + - os: macos-latest + node-version: 10.x + - os: macos-latest + node-version: 12.x + - os: macos-latest + node-version: 14.x runs-on: ${{ matrix.os }}