Skip to content

Commit 096b621

Browse files
committed
[workflow/test] added type check actions
1 parent 88ec77d commit 096b621

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/type-check.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Type Check
2+
on:
3+
push:
4+
branches:
5+
- master
6+
pull_request:
7+
types: [opened, synchronize, reopened]
8+
jobs:
9+
code-quality-check:
10+
name: Type Check
11+
runs-on: ubuntu-latest
12+
steps:
13+
- name: Checkout repository
14+
uses: actions/checkout@v3
15+
16+
- name: Install dependencies
17+
uses: ./.github/actions/install-dependencies
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20+
21+
- name: Run TypeScript type check
22+
run: npx tsc --noEmit
23+
continue-on-error: false

0 commit comments

Comments
 (0)