Skip to content

Commit 45fb215

Browse files
committed
ci: added typecheck ci job
1 parent e7df5cc commit 45fb215

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,21 @@ jobs:
3737
with:
3838
name: chrome
3939
path: artifacts/chrome.zip
40+
41+
typecheck:
42+
runs-on: ubuntu-latest
43+
44+
steps:
45+
- name: Checkout
46+
uses: actions/checkout@v4
47+
with:
48+
submodules: recursive
49+
50+
- name: Use Node.js 23.x
51+
uses: actions/setup-node@v4
52+
with:
53+
node-version: 23.x
54+
cache: npm
55+
56+
- name: Typecheck TypeScript
57+
run: make compile

0 commit comments

Comments
 (0)