Skip to content

feat: add typechecking to CI #186

feat: add typechecking to CI

feat: add typechecking to CI #186

Workflow file for this run

on:
workflow_dispatch:
push:
branches: [main]
pull_request:
branches: [main]
name: CI
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest # on which machine to run
steps: # list of steps
- name: Install NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
- name: Code Checkout
uses: actions/checkout@v4
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Code Linting
run: yarn lint
- name: Typechecking
run: yarn typecheck