Skip to content

Build and test

Build and test #321

Workflow file for this run

# https://github.com/actions/setup-node
name: Build and test
on: [push]
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: '14'
- run: yarn install --frozen-lockfile
- run: yarn test:lint
- run: yarn test:unit
- run: yarn test:unit:cov
- run: yarn build
- run: yarn doc