From a25f85e5aa99209287a8f94db9ff5eca111daeb2 Mon Sep 17 00:00:00 2001 From: Leah Date: Mon, 6 Jan 2020 04:16:46 +0100 Subject: [PATCH] (github-actions) change branch triggers and add more node versions --- .github/workflows/nodejs.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index be79ad4..1bae9bb 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,12 +1,11 @@ name: Node CI on: - pull_request: - branches: - - master + pull_request: {} push: - branches: - - master + branches-ignore: + - trying.tmp + - staging.tmp jobs: build: @@ -14,7 +13,7 @@ jobs: strategy: matrix: - node-version: [10.x, 12.x] + node-version: [8.x, 10.x, 12.x, 13.x] steps: - uses: actions/checkout@v1