From 3cd7f48ff6582017d0dc65a0d3a76bdbea97606a Mon Sep 17 00:00:00 2001 From: Conduitry Date: Sun, 31 May 2020 19:54:13 -0400 Subject: [PATCH] reinstate Node 8 tests but always build on Node 14 --- .github/workflows/test.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b8c7284..b49df3f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,12 +5,15 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - node-version: [10, 12, 14] + node-version: [8, 10, 12, 14] os: [ubuntu-latest, windows-latest, macOS-latest] steps: - uses: actions/checkout@v1 - uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node-version }} + node-version: 14 - run: npm install - - run: npm test + - uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + - run: node test.js