We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88ec77d commit 096b621Copy full SHA for 096b621
.github/workflows/type-check.yaml
@@ -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