Skip to content

Commit

Permalink
build more
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Jan 10, 2025
1 parent 6cba2f6 commit bbdca62
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 14 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/ci-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,13 +141,12 @@ jobs:
restore-keys: |
${{ runner.os }}-pnpm-cypress-
- name: Install package.json dependencies with pnpm
- name: Build and install npm dependencies
if: needs.changes.outputs.shouldTriggerCypress == 'true'
run: pnpm install --frozen-lockfile --filter .

- name: Install @posthog/hogvm
if: needs.changes.outputs.frontend == 'true'
run: cd hogvm/typescript && pnpm install --frozen-lockfile --filter . && pnpm run compile
run: |
pnpm install --frozen-lockfile
cd hogvm/typescript && pnpm compile
cd ../../rust/cyclotron-node && pnpm build
- name: Stop/Start stack with Docker Compose
# these are required checks so, we can't skip entire sections
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/ci-plugin-server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -268,18 +268,18 @@ jobs:
- name: Build npm dependencies
if: needs.changes.outputs.plugin-server == 'true'
run: |
cd hogvm/typescript
pnpm i --filter .
cd plugin-server
pnpm install --frozen-lockfile --filter .
cd ../hogvm/typescript
pnpm install --frozen-lockfile --filter .
pnpm compile
cd ../../rust/cyclotron-node
pnpm i --filter .
pnpm install --frozen-lockfile --filter .
pnpm build
- name: Install package.json dependencies with pnpm
if: needs.changes.outputs.plugin-server == 'true'
run: |
cd plugin-server
pnpm install --frozen-lockfile --filter .
cd ../../plugin-server
pnpm build
- name: Wait for Clickhouse, Redis & Kafka
Expand Down

0 comments on commit bbdca62

Please sign in to comment.