Skip to content

Update README.md

Update README.md #50

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Check Out Git Repository
uses: actions/checkout@v2
- name: Set Up Node
uses: actions/setup-node@v2-beta
with:
node-version: '14.x'
- run: yarn install --ignore-scripts
- name: Typechain
run: yarn typechain
- name: Test
run: yarn test