Skip to content

Commit 45ee73b

Browse files
authored
fix(ci): publish/type-check (#189)
2 parents e8c4a3e + 763c37b commit 45ee73b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
run: pnpm install
3131
# TODO: is this manual build step actually needed?
3232
# `prepack` hook _should_ run but doesn't seem to.
33+
- run: pnpm run type-check
3334
- run: pnpm run build
3435
- uses: changesets/action@v1
3536
if: ${{ github.event_name != 'pull_request' }}

tsconfig.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
"strict": true,
88
"esModuleInterop": true,
99
"forceConsistentCasingInFileNames": true,
10-
"skipLibCheck": true
10+
"skipLibCheck": true,
11+
"paths": {
12+
"@clack/core": ["./packages/core/src"]
13+
}
1114
},
1215
"include": ["packages"]
1316
}

0 commit comments

Comments
 (0)