Skip to content

Commit af6b586

Browse files
committed
Fix TS on CI
1 parent 39c4fd1 commit af6b586

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/continuous-integration.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ jobs:
1313
cache: 'pnpm'
1414
- run: pnpm install
1515
- run: pnpm run test
16+
- run: pnpm run typecheck
1617
# FIXME: To be reactivated
1718
# - run: pnpm run lint
18-
- run: pnpm run tsc --noEmit
1919
# - run: pnpm run smoke cjs 19.0.0
2020
# - run: pnpm run smoke esm 19.0.0
2121
# - run: pnpm run smoke cjs latest

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@
1717
"prettier:fix": "prettier --write \"**/*.{ts,tsx,js,json}\"",
1818
"test": "vitest",
1919
"release": "./release.sh",
20-
"smoke": "node tests/smoke/run"
20+
"smoke": "node tests/smoke/run",
21+
"typecheck": "tsc --noEmit"
2122
},
2223
"author": {
2324
"name": "Algolia, Inc.",

0 commit comments

Comments
 (0)