Skip to content

Commit 5373a67

Browse files
committed
ci(workflows): add typecheck step to ci workflow
Signed-off-by: Lexus Drumgold <[email protected]>
1 parent d6016b8 commit 5373a67

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/ci.yml

+3
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,9 @@ jobs:
6060
- id: spelling
6161
name: Check spelling
6262
run: yarn check:spelling
63+
- id: types
64+
name: Check types
65+
run: yarn check:types
6366
- id: test
6467
name: Run tests
6568
run: yarn test:cov

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"check:format": "prettier --check .",
5656
"check:lint": "eslint --exit-on-fatal-error --ext cjs,cts,gql,json,jsonc,md,mjs,ts,yml --max-warnings 0 .",
5757
"check:spelling": "cspell lint --color --no-progress --relative $@ \"**\"",
58-
"check:types": "NODE_OPTIONS='--es-module-specifier-resolution=node --loader=./loader' tsc -p tsconfig.json",
58+
"check:types": "NODE_OPTIONS='' tsc -p tsconfig.json",
5959
"check:upgrades": "yarn upgrade-interactive",
6060
"clean:build": "trash ./{dist,*.tgz}",
6161
"clean:modules": "trash ./.yarn/{cache,*.gz} ./node_modules",

0 commit comments

Comments
 (0)