Skip to content

first stab at migrating to TypeScript #1

first stab at migrating to TypeScript

first stab at migrating to TypeScript #1

name: Run Typescript Checks
on:
pull_request:
branches: [main]
workflow_dispatch:
jobs:
typescript-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: npm install
- name: Run TypeScript check
run: npm run check