Skip to content

Update README.md

Update README.md #331

Workflow file for this run

name: On Push
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: yarn
- run: yarn lint
env:
CI: true
build-and-test:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 12.x
- run: yarn
- run: yarn build
- run: yarn doc
- run: yarn test
- run: yarn test:integration