We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
typecheck
1 parent c46f1b5 commit 7a21871Copy full SHA for 7a21871
.github/workflows/ci.yml
@@ -42,6 +42,9 @@ jobs:
42
43
- run: pnpm install
44
45
+ - name: Run typecheck
46
+ run: npm run typecheck
47
+
48
- name: Run unit tests
49
run: npm run test -- --package-name '*'
50
package.json
@@ -15,7 +15,8 @@
15
"update": "ddc update",
16
"test": "ddc test",
17
"add": "ddc add",
18
- "release": "ddc release"
+ "release": "ddc release",
19
+ "typecheck": "tsc --noEmit --skipLibCheck"
20
},
21
"scripts-info": {
22
"init": "首次安装",
0 commit comments