Skip to content

Commit 7e37f5f

Browse files
committed
Run static type check on GitHub Actions
1 parent 3f9f5e0 commit 7e37f5f

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/type-check.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Check static types
2+
3+
on:
4+
push:
5+
branches:
6+
- "**"
7+
pull_request:
8+
branches:
9+
- "**"
10+
11+
jobs:
12+
test:
13+
runs-on: ubuntu-latest
14+
15+
steps:
16+
- uses: actions/checkout@v5
17+
18+
- name: Use Node.js
19+
uses: actions/setup-node@v5
20+
with:
21+
node-version: "22.x"
22+
23+
- name: Install dependencies
24+
run: yarn install
25+
26+
- name: Type check
27+
run: yarn type-check

0 commit comments

Comments
 (0)