Skip to content

Update README.md

Update README.md #104

Workflow file for this run

name: CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
cache: 'yarn'
- name: setup browser
uses: browser-actions/setup-chrome@latest
- name: install dependencies
run: yarn install
- name: test
run: yarn test:ci
- name: lint
run: yarn lint