From 379c5473598a2aea3629e2a375a410ca16b771c3 Mon Sep 17 00:00:00 2001 From: Joey Parrish Date: Mon, 21 Mar 2022 19:23:28 -0700 Subject: [PATCH] ci: Run on pull requests, and up to node v17 A lot of mistakes I made in recent PRs could have been avoided with this. --- .github/workflows/nodejs.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 7b255974e..82600846f 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,5 +1,5 @@ name: Node CI -on: [push] +on: [push, pull_request] jobs: build: @@ -7,7 +7,8 @@ jobs: strategy: matrix: - node-version: [4.x, 6.x, 8.x, 10.x, 12.x] + node-version: [4.x, 6.x, 8.x, 10.x, 12.x, 14.x, 16.x, 17.x] + fail-fast: false steps: - uses: actions/checkout@v1