fix: skip build scripts during pnpm install in CI
CI / CI (pull_request) Successful in 5m41s

- Add --ignore-scripts flag to pnpm install
- Prevents ERR_PNPM_IGNORED_BUILDS from unrs-resolver
- Build scripts not needed during dependency install phase
- Compilation handled by 'pnpm run build' step
This commit is contained in:
Story Crater Bot
2026-09-07 17:27:04 -07:00
parent d0cb810bbe
commit e7dfef2ebc
+1 -1
View File
@@ -30,7 +30,7 @@ jobs:
run: corepack install
- name: Install dependencies
run: pnpm install
run: pnpm install --ignore-scripts
- name: Run tests
run: pnpm test -- --run 2>&1 || echo "Tests completed"