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.
1 parent 0c8b167 commit c34cb8fCopy full SHA for c34cb8f
.github/workflows/ci.yml
@@ -18,6 +18,8 @@ jobs:
18
run: |
19
yarn install --frozen-lockfile
20
yarn lint
21
+ - name: Run typecheck
22
+ run: yarn typecheck
23
24
test:
25
needs:
package.json
@@ -16,7 +16,8 @@
16
"prettier": "prettier --write --log-level warn .",
17
"prettier:check": "prettier --check --log-level warn .",
"test": "yarn workspace @ambiki/impulse test",
- "test:watch": "yarn workspace @ambiki/impulse test:watch"
+ "test:watch": "yarn workspace @ambiki/impulse test:watch",
+ "typecheck": "tsc --noEmit"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
0 commit comments