Skip to content

.github/workflows/typecheck.yaml #4

.github/workflows/typecheck.yaml

.github/workflows/typecheck.yaml #4

Workflow file for this run

on:
push:
pull_request:
jobs:
typecheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Install Node.js
uses: actions/setup-node@v6
with:
node-version: 24
registry-url: https://registry.npmjs.org
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run typechecks
run: pnpm typecheck