Skip to content

Bump version to 2.0.1 #729

Bump version to 2.0.1

Bump version to 2.0.1 #729

Workflow file for this run

name: CI
on:
pull_request:
jobs:
lint:
name: Lint and type check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
name: Checkout
- uses: actions/setup-node@v3
name: Setup Node
with:
node-version-file: .nvmrc
cache: yarn
- name: Install modules
run: yarn install --frozen-lockfile
- name: Run ESLint
run: yarn run lint --fix
- name: Check TS errors
run: yarn run tsc