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.
This commit is contained in:
silverwind 2020-10-29 22:17:23 +01:00 committed by tophf
parent 72cb5bdc9a
commit caec255e16

View File

@ -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