From 99d356a3679ff22f5d96ab1f656bdd58ff6fcc09 Mon Sep 17 00:00:00 2001 From: Donal Linehan Date: Wed, 6 Dec 2023 10:26:53 +0000 Subject: [PATCH] Only specify major versions Also only on push --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 3b054c1..bb6d00a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1,12 +1,12 @@ name: CI -on: [push, pull_request] +on: [push] jobs: build: strategy: matrix: os: [macos-latest, windows-latest, ubuntu-latest] - node-version: ["0.12", "4.9", "8.17", "14.0"] + node-version: ["4", "8", "14"] runs-on: ${{ matrix.os }}