Skip to content

Commit b2072a6

Browse files
committed
dont ignore worksapce
1 parent f7d0c76 commit b2072a6

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ jobs:
1818
persist-credentials: false
1919
- name: Setup pnpm
2020
uses: pnpm/action-setup@v4
21-
with:
22-
version: 10.14.0
21+
2322
- name: Setup Node.js
2423
uses: actions/setup-node@v4
2524
with:
@@ -28,6 +27,6 @@ jobs:
2827
- name: Install dependencies
2928
run: pnpm install --frozen-lockfile
3029
- name: Build agent
31-
run: cd packages/agent && pnpm build
30+
run: pnpm --filter agent build
3231
- name: Build array
33-
run: cd apps/array && pnpm build
32+
run: pnpm --filter array build

.github/workflows/typecheck.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ jobs:
2424
cache: 'pnpm'
2525
- name: Install dependencies
2626
run: pnpm install --frozen-lockfile
27-
- name: Verify workspace linking
28-
run: |
29-
ls -la apps/array/node_modules/@posthog/ || echo "No symlink found"
30-
ls -la node_modules/@posthog/ || echo "No root link found"
3127
- name: Run type check
3228
run: pnpm run typecheck
3329

.gitignore

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@ AGENTS.md
3131
.claude/
3232
.claude-config/
3333

34-
pnpm-workspace.yaml
35-
3634
**.car
3735

3836
.envrc

pnpm-workspace.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
packages:
2+
- 'apps/*'
3+
- 'packages/*'
4+
5+
onlyBuiltDependencies:
6+
- electron
7+
- esbuild

0 commit comments

Comments
 (0)