Skip to content

Release v2.1.1

Release v2.1.1 #29

Workflow file for this run

# This workflow will do a clean install of node dependencies, lint the source code and run tests
name: Continuous Integration
on: pull_request
jobs:
test-and-lint:
name: Run tests and lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '12.x'
- run: yarn install
- run: yarn lint
- run: yarn typecheck
- run: yarn test
- run: yarn audit --groups dependencies
- run: yarn build