Run tests on node 14 too
This commit is contained in:
parent
0f895b4795
commit
52f4c43802
|
@ -6,12 +6,15 @@ jobs:
|
||||||
tests:
|
tests:
|
||||||
name: Tests
|
name: Tests
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
node: [12, 14]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: "12.x"
|
node-version: ${{matrix.node}}
|
||||||
registry-url: "https://registry.npmjs.org"
|
|
||||||
- name: Install deps
|
- name: Install deps
|
||||||
run: yarn
|
run: yarn
|
||||||
- name: Lint
|
- name: Lint
|
||||||
|
|
Reference in New Issue