fix(ci): exclude test fixtures from Renovate scanning - #2457
Merged
Conversation
✅ Deploy Preview for viteplus-preview canceled.
|
fengmk2
force-pushed
the
fix/renovate-fixture-crash
branch
from
August 14, 2026 14:38
e975b18 to
86ec881
Compare
Renovate aborts the whole repository scan with ERR_PNPM_INVALID_SELECTOR on the multi-level pnpm override selector in the migration_monorepo_pnpm_overrides_dependency_selector fixture, so no dependency update PRs have been created since mid-June. Ignore the snapshot and unit-test fixture trees; fixture deps are test data. Closes #2451 Claude-Session: https://claude.ai/code/session_01QGJxVVp6EsxhuxfBjKfvDy
fengmk2
force-pushed
the
fix/renovate-fixture-crash
branch
from
August 16, 2026 07:59
2544a9d to
e8dfaa9
Compare
wan9chi
approved these changes
Aug 16, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Renovate aborts the whole repository scan with
ERR_PNPM_INVALID_SELECTORwhen it parses the multi-level pnpm override selector (vite-plugin-svgr>foo>vite) in themigration_monorepo_pnpm_overrides_dependency_selectorsnapshot fixture (error log). The selector is intentionalvp migratetest data, but@pnpm/parse-overridescannot parse two>levels. Every run since mid-June failed, so the update PRs #1780, #1782, and #1831 went stale.Fix: add the snapshot and unit-test fixture trees to
ignorePaths. Renovate appliesignorePathsbefore extraction, so fixture files never reach the parser on any Renovate version. Fixture dependencies also stop receiving bump PRs, which would break recorded snapshots.Verified with
renovate-config-validatorand a local dry run (npx renovate --platform=local --dry-run=extract): the npm manager drops from 726 files to 11 real package files, no fixture file is extracted, and the cargo and github-actions managers are unchanged (crates/vp_cli_snapshots/Cargo.tomlstays managed).Closes #2451