Skip to content

Commit c522197

Browse files
killaguclaude
andcommitted
fix(ci): use correct env name for pnpm packageManager strict bypass
The previous env var \`PNPM_PACKAGE_MANAGER_STRICT\` is not recognized by pnpm, so pnpm kept refusing the pack step with \`This project is configured to use utoo\`. The actual setting is \`package-manager-strict\`, exposed via \`NPM_CONFIG_PACKAGE_MANAGER_STRICT\`. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 842a307 commit c522197

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/e2e-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ jobs:
175175
# run when `packageManager` points at another tool, so disable
176176
# that strict check for just this step.
177177
env:
178-
PNPM_PACKAGE_MANAGER_STRICT: 'false'
178+
NPM_CONFIG_PACKAGE_MANAGER_STRICT: 'false'
179179
run: pnpm -r pack
180180

181181
- name: Override dependencies from tgz in ${{ matrix.project.name }}

0 commit comments

Comments
 (0)