Skip to content

fix tests

fix tests #38

Workflow file for this run

name: CI
on: [push]
jobs:
build:
name: Test ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '12', '14', '16' ]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: yarn install
- run: yarn test