Skip to content

Commit 81d5e43

Browse files
committed
ci: add new workflow to check for ts errors
1 parent c20e774 commit 81d5e43

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/check-ts.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
on:
2+
push:
3+
4+
name: Compile TypeScript to check for errors
5+
jobs:
6+
deploy:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 20
13+
- run: npm install
14+
- run: npm run compile

0 commit comments

Comments
 (0)