From caec255e1646dbeb214ebe2ce4c4ee1d2795eba6 Mon Sep 17 00:00:00 2001 From: silverwind Date: Thu, 29 Oct 2020 22:17:23 +0100 Subject: [PATCH] Simplify CI action Only run on a single node version, that way you won't get tripe error annotations, and it's really not neccessary for this repo to test on multiples anyways. --- .github/workflows/ci.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b7714d1c..f006694c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,18 +3,12 @@ on: [push, pull_request] jobs: test: - strategy: - fail-fast: false - matrix: - os: [ubuntu-latest] - node: ['10', '12', '14'] - - runs-on: ${{ matrix.os }} + runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - uses: actions/setup-node@v1 with: - node-version: ${{ matrix.node }} + node-version: '14' - run: npm install - run: npm test