From 27860a1fad489abd327f18327e8c2f651eb26bb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Berthommier?= Date: Tue, 25 Feb 2020 05:47:27 +0100 Subject: [PATCH] chore(ci): Add LTS node version to test and run on pull requests (#1826) --- .github/workflows/nodejs.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 74edf6734b..b3f3a4cbfb 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,6 +1,6 @@ name: CI -on: [push] +on: [push, pull_request] jobs: build: @@ -9,7 +9,7 @@ jobs: strategy: matrix: - node-version: [10.x, 13.x] + node-version: [10.x, 12.x, 13.x] steps: - uses: actions/checkout@v2