From d239db9247aa7a30f6f1f2a6372fcee1be20c8a6 Mon Sep 17 00:00:00 2001 From: Ben McCann <322311+benmccann@users.noreply.github.com> Date: Wed, 12 Apr 2023 12:24:50 -0700 Subject: [PATCH] chore: run fewer CI jobs --- .github/workflows/ci.yml | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a4d83558f1a..9288f8333c0b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,8 +11,17 @@ jobs: timeout-minutes: 15 strategy: matrix: - node-version: [14, 16, 18] - os: [ubuntu-latest, windows-latest, macOS-latest] + include: + - node-version: 14 + os: ubuntu-latest + - node-version: 14 + os: windows-latest + - node-version: 14 + os: macOS-latest + - node-version: 16 + os: ubuntu-latest + - node-version: 18 + os: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 @@ -37,6 +46,7 @@ jobs: timeout-minutes: 10 strategy: matrix: + node-version: 14 os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v3