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

feat: ci config for linting and typecheck #3

feat: ci config for linting and typecheck

feat: ci config for linting and typecheck #3

Workflow file for this run

name: Code quality - typecheck
on:
push:
branches:
- master
pull_request:
types: [opened, synchronize]
jobs:
typecheck:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "yarn"
- run: cd frontend
- run: yarn install
- name: Typechecking
run: yarn tsc:compile