Skip to content
This repository has been archived by the owner on Jun 28, 2024. It is now read-only.

Convert repository to monorepo #86

Convert repository to monorepo

Convert repository to monorepo #86

Workflow file for this run

name: Lint & Types
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v2
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 18.12.0
cache: 'yarn'
- name: Install node dependencies
run: yarn
- name: Build Types
run: yarn build
- name: Check types
run: yarn tsc
- name: Lint
run: yarn lint:check
- name: Prettier
run: yarn format:check