Skip to content

feat: improve workspace focus UX #1557

feat: improve workspace focus UX

feat: improve workspace focus UX #1557

Workflow file for this run

name: Build
on:
pull_request:
concurrency:
group: build-${{ github.head_ref || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build electron-trpc
run: pnpm --filter @posthog/electron-trpc build
- name: Build shared
run: pnpm --filter @posthog/shared build
- name: Build agent
run: pnpm --filter agent build
- name: Build twig
run: pnpm --filter twig build