Skip to content

Commit 46ab3ac

Browse files
committed
fix: Add missing build steps for type checking and testing
1 parent 070198b commit 46ab3ac

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
- name: Install dependencies
4545
run: pnpm install --frozen-lockfile
4646

47+
- name: Build packages (required for typecheck)
48+
run: pnpm build
49+
4750
- name: Type check
4851
run: pnpm typecheck
4952

@@ -120,6 +123,9 @@ jobs:
120123
- name: Install dependencies
121124
run: pnpm install --frozen-lockfile
122125

126+
- name: Build packages (required for tests)
127+
run: pnpm build
128+
123129
- name: Run tests
124130
run: pnpm test
125131

0 commit comments

Comments
 (0)