Skip to content

Lint and actions

Lint and actions #1

Workflow file for this run

name: TypeScript Check
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
setup:
uses: ./.github/workflows/setup.yml
tsc:
needs: setup
runs-on: ubuntu-latest
steps:
- name: TypeScript Check
run: npx tsc --noEmit