From a3d0dbd12ccd084871122488f4230a775aadb539 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Sun, 22 Nov 2020 16:17:20 -0800 Subject: [PATCH] Run fewer CI jobs against MacOSX --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e04386fcc..160c59d19b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,7 +7,11 @@ jobs: strategy: matrix: node-version: [8, 10, 12, 14] - os: [ubuntu-latest, windows-latest, macOS-latest] + os: [ubuntu-latest, windows-latest] + # MacOS is charged for at 10x the rate of Ubuntu so run it only on one version of Node + include: + - node: 14 + os: macOS-latest steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1