diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 28618734..4d473e97 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: pnpm recursive list - name: Run typecheck - run: pnpm --loglevel debug --recursive type-check + run: pnpm type-check run-tests: name: Run Tests diff --git a/package.json b/package.json index ef2b8b2b..7b845ece 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,8 @@ "lint": "prettier --check .", "format": "prettier --write .", "build": "turbo run build", - "prepublishOnly": "npm run build" + "prepublishOnly": "npm run build", + "type-check": "pnpm --recursive type-check" }, "devDependencies": { "prettier-plugin-organize-imports": "^4.1.0",