Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
run: |
yarn install --frozen-lockfile
yarn lint
- name: Run typecheck
run: yarn typecheck

test:
needs:
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"prettier": "prettier --write --log-level warn .",
"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": "yarn workspace @ambiki/impulse typecheck"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.2",
Expand Down
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"clean": "rm -fr dist",
"prepublishOnly": "yarn clean && yarn build",
"test": "web-test-runner",
"test:watch": "web-test-runner --watch"
"test:watch": "web-test-runner --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@open-wc/testing": "^3.2.0",
Expand Down
Loading