Skip to content

Commit e149c85

Browse files
committed
add typecheck
1 parent fd1d033 commit e149c85

1 file changed

Lines changed: 19 additions & 0 deletions

File tree

.github/workflows/typecheck.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: typecheck
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
jobs:
10+
typecheck:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: 20
17+
cache: npm
18+
- run: npm ci
19+
- run: npx tsc --noEmit

0 commit comments

Comments
 (0)