Skip to content

Code and UI refactoring #1

Code and UI refactoring

Code and UI refactoring #1

Workflow file for this run

name: Typecheck
on:
push:
branches:
- main
- master
pull_request:
permissions:
contents: read
jobs:
typecheck:
name: Typecheck
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Run TypeScript typecheck
run: npx tsc -p tsconfig.json