Skip to content

Commit ca57fea

Browse files
authored
Merge pull request #103 from aspiers/fix-ci
2 parents d96ac7d + c3946ff commit ca57fea

2 files changed

Lines changed: 8 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ jobs:
5858
- run: npm install -g npm@latest
5959

6060
- run: pnpm install
61+
62+
# Work around Turbo failing to allow cross-package task
63+
# dependencies - we need sdk-core built before sdk-react
64+
# can even typecheck successfully
65+
- run: pnpm --filter @hypercerts-org/sdk-core build
66+
6167
# Run checks early to fail fast before any versioning/git operations.
6268
# Note: checks run again in `pnpm release` - this is intentional to also
6369
# guard local releases and catch any issues after version bumps.

.husky/pre-commit

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
pnpm lint-staged
22

3-
pnpm build
3+
# This is too slow and discourages committing early and often
4+
# pnpm build
45

56
# Warn if committing package changes without a changeset
67
if git diff --cached --name-only | grep -q "^packages/" && \

0 commit comments

Comments
 (0)