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: jobs:
test: test:
strategy: runs-on: ubuntu-latest
fail-fast: false
matrix:
os: [ubuntu-latest]
node: ['10', '12', '14']
runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node }} node-version: '14'
- run: npm install - run: npm install
- run: npm test - run: npm test