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:
parent
72cb5bdc9a
commit
caec255e16
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user