Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
4 changes: 3 additions & 1 deletion .github/workflows/preview-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,10 @@ jobs:
node-version: 24.15.0
cache: "pnpm"

# --ignore-scripts prevents transitive packages from running lifecycle
# scripts (postinstall, prepare, etc.) in this privileged context.
- name: Install dependencies
run: pnpm install
run: pnpm install --ignore-scripts

- name: Build Packages
run: pnpm run build
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,10 @@ jobs:
with:
node-version: 24.15.0

# --ignore-scripts prevents transitive packages from running lifecycle
# scripts (postinstall, prepare, etc.) in this privileged context.
- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --frozen-lockfile --ignore-scripts

- name: Build Packages
run: pnpm run build --force
Expand Down Expand Up @@ -98,7 +100,7 @@ jobs:
if: steps.vscode-published.outputs.published == 'true'
run: |
mv ./package.temp.json ./package.json
pnpm install --frozen-lockfile
pnpm install --frozen-lockfile --ignore-scripts

- name: Generate Announcement
id: message
Expand Down
Loading