From 50eef7c8c3e4f192da998565c9f56a6802768a00 Mon Sep 17 00:00:00 2001 From: Peter Ramsing Date: Sat, 6 May 2023 19:54:12 -0700 Subject: [PATCH 1/2] adds v* to ci --- .github/workflows/node.js.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 74c0943..cca69ea 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -7,9 +7,11 @@ on: push: branches: - master + - v* pull_request: branches: - master + - v* jobs: build: @@ -17,8 +19,8 @@ jobs: strategy: matrix: - node-version: [16.x, 17.x, 18.x, 19.x, 20.x] - # See supported Node.js release schedule at https://endoflife.date/nodejs + node-version: [14.x, 16.x, 17.x, 18.x] + # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ steps: - uses: actions/checkout@v3 From 79f3a428c5f4dc0f5f2947077b062aaf05eaa7f7 Mon Sep 17 00:00:00 2001 From: Peter Ramsing Date: Sat, 6 May 2023 19:55:03 -0700 Subject: [PATCH 2/2] adds main as ci branch --- .github/workflows/node.js.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index cca69ea..8d2ceb0 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -6,11 +6,11 @@ name: Node CI on: push: branches: - - master + - main - v* pull_request: branches: - - master + - main - v* jobs: