Skip to content

Commit c9a1825

Browse files
committed
ci: add typechecking CI job
1 parent 92780ab commit c9a1825

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/typecheck.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
name: Typecheck
3+
4+
on:
5+
push:
6+
branches:
7+
- main
8+
pull_request:
9+
10+
jobs:
11+
typecheck:
12+
runs-on: ubuntu-24.04
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 18.14.0
19+
cache: npm
20+
21+
- name: Install dependencies
22+
run: npm ci --no-audit
23+
24+
- name: Typecheck
25+
run: npm run typecheck

0 commit comments

Comments
 (0)