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

Commit

Permalink
add typecheck github action
Browse files Browse the repository at this point in the history
  • Loading branch information
seveibar committed Aug 10, 2024
1 parent 79c8a48 commit 11b2e1e
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/npm-typecheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Created using @tscircuit/plop (npm install -g @tscircuit/plop)
name: Type Check

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
type-check:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "22"

- name: Install dependencies
run: bun i

- name: Run format check
run: npx tsc --noEmit

0 comments on commit 11b2e1e

Please sign in to comment.