mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-16 23:23:29 +08:00
fix: relax pnpm strict build checks in CI
This commit is contained in:
5
.github/workflows/ci.yml
vendored
5
.github/workflows/ci.yml
vendored
@@ -140,7 +140,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
case "${{ matrix.pm }}" in
|
case "${{ matrix.pm }}" in
|
||||||
npm) npm ci ;;
|
npm) npm ci ;;
|
||||||
pnpm) pnpm install --no-frozen-lockfile ;;
|
# pnpm v10 can fail CI on ignored native build scripts
|
||||||
|
# (for example msgpackr-extract) even though this repo is Yarn-native
|
||||||
|
# and pnpm is only exercised here as a compatibility lane.
|
||||||
|
pnpm) pnpm install --config.strict-dep-builds=false --no-frozen-lockfile ;;
|
||||||
# Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature
|
# Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature
|
||||||
yarn) yarn install ;;
|
yarn) yarn install ;;
|
||||||
bun) bun install ;;
|
bun) bun install ;;
|
||||||
|
|||||||
5
.github/workflows/reusable-test.yml
vendored
5
.github/workflows/reusable-test.yml
vendored
@@ -130,7 +130,10 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
case "${{ inputs.package-manager }}" in
|
case "${{ inputs.package-manager }}" in
|
||||||
npm) npm ci ;;
|
npm) npm ci ;;
|
||||||
pnpm) pnpm install --no-frozen-lockfile ;;
|
# pnpm v10 can fail CI on ignored native build scripts
|
||||||
|
# (for example msgpackr-extract) even though this repo is Yarn-native
|
||||||
|
# and pnpm is only exercised here as a compatibility lane.
|
||||||
|
pnpm) pnpm install --config.strict-dep-builds=false --no-frozen-lockfile ;;
|
||||||
# Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature
|
# Yarn Berry (v4+) removed --ignore-engines; engine checking is no longer a core feature
|
||||||
yarn) yarn install ;;
|
yarn) yarn install ;;
|
||||||
bun) bun install ;;
|
bun) bun install ;;
|
||||||
|
|||||||
Reference in New Issue
Block a user