From d4a67a03e96c5c179f204024b182ab524e18b9ac Mon Sep 17 00:00:00 2001 From: SukkaW Date: Tue, 17 Sep 2024 22:24:15 +0800 Subject: [PATCH] ci: makes macos actions exclude Node.js 14 --- .github/workflows/tester.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/tester.yml b/.github/workflows/tester.yml index e25abc1..16d6c49 100644 --- a/.github/workflows/tester.yml +++ b/.github/workflows/tester.yml @@ -9,6 +9,10 @@ jobs: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: ['14.x', '16.x', '18.x'] + exclude: + # https://docs.github.com/en/actions/writing-workflows/choosing-what-your-workflow-does/running-variations-of-jobs-in-a-workflow#excluding-matrix-configurations + - os: macos-latest + node-version: 14.x fail-fast: false steps: - uses: actions/checkout@v2