Skip to content
Closed
Show file tree
Hide file tree
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
5 changes: 5 additions & 0 deletions .changeset/frozen-lockfile-ci.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@googleworkspace/cli": patch
---

Use `pnpm install --frozen-lockfile` in CI for reproducible dependency resolution

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pull request is missing the actual implementation changes. While this changeset file describes the intent to use pnpm install --frozen-lockfile in CI, no modifications to the workflow configuration files (e.g., .github/workflows/release.yml) are included in the diff. Additionally, note that since the project uses pnpm v10, --frozen-lockfile is already the default behavior in CI environments, though explicitly adding it is still acceptable for clarity.

2 changes: 1 addition & 1 deletion .github/workflows/release-changesets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
cache: 'pnpm'

- name: Install Dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- run: |
git config --global user.name "googleworkspace-bot"
Expand Down
Loading