Skip to content

Fix/UI t 188 version fix #725

Fix/UI t 188 version fix

Fix/UI t 188 version fix #725

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