Skip to content

Commit 7777eae

Browse files
Add Typescript typecheck Github Actions workflow (magic-peach#366)
Co-authored-by: Akanksha Trehun <146705736+magic-peach@users.noreply.github.com>
1 parent 1d4a668 commit 7777eae

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/typecheck.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Type Check
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
typecheck:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- uses: oven-sh/setup-bun@v1
13+
14+
- run: bun install
15+
16+
- run: bunx tsc --noEmit

0 commit comments

Comments
 (0)