Skip to content

Commit 20c0619

Browse files
authored
ci: add job to run TypeScript checks (#26)
1 parent f96d047 commit 20c0619

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-24.04
1515
strategy:
1616
matrix:
17-
task: [format, lint]
17+
task: [format, lint, type-check]
1818
steps:
1919
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
2020
- uses: jdx/mise-action@5083fe46898c414b2475087cc79da59e7da859e8 # v2.1.11

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"scripts": {
99
"clean": "npm run clean --ws",
1010
"tsc": "npm run tsc --ws",
11+
"type-check": "npm exec --ws -- tsc --noEmit",
1112
"build": "webpack --mode production",
1213
"watch": "webpack --mode development --watch",
1314
"test": "npm run test --ws --if-present",

0 commit comments

Comments
 (0)