Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/_bundle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,14 @@ jobs:
cache: 'pnpm'
cache-dependency-path: ${{ inputs.worker }}/pnpm-lock.yaml

# Bundle workers are self-contained projects with their own lockfiles
# (see the note in the repo-root pnpm-workspace.yaml). Without
# --ignore-workspace, pnpm walks up to the root UI workspace and never
# installs the worker's own deps.
- name: pnpm install
if: inputs.language == 'node' || inputs.language == 'javascript'
working-directory: ${{ inputs.worker }}
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-workspace

- name: pnpm run build:bundle
if: inputs.language == 'node' || inputs.language == 'javascript'
Expand Down
Loading