Merge pull request #87 from ChainSafe/dapplion/run-node12-14

Run tests on node 14 too
This commit is contained in:
Lion - dapplion 2021-04-05 21:39:44 +02:00 committed by GitHub
commit 2decf4ea75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 2 deletions

View File

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