Skip to content

Update README.md

Update README.md #7

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Test
run: yarn test
- name: Lint
run: yarn lint