Skip to content

Commit

Permalink
fix: typecheck command in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
hstove committed May 7, 2024
1 parent 33e95c4 commit ab8d91e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ jobs:
- name: Build packages
run: pnpm build:packages
- name: Type checks
run: pnpm typecheck
# run: pnpm typecheck
run: pnpm turbo run typecheck --filter="\!docs-site"
- name: Tests
run: pnpm test
- name: Lint
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
- name: Lint
run: pnpm lint
- name: Type checks
run: pnpm typecheck
# run: pnpm typecheck
run: pnpm turbo run typecheck --filter="\!docs-site"
- name: Tests
run: pnpm test

0 comments on commit ab8d91e

Please sign in to comment.