fix: restore config dry-run schema validation

This commit is contained in:
Peter Steinberger
2026-05-03 13:16:09 +01:00
parent 9a49d143c8
commit 81fea91fda
3 changed files with 9 additions and 4 deletions

View File

@@ -1313,6 +1313,7 @@ function collectDryRunSchemaErrors(params: {
}): ConfigSetDryRunError[] {
const validated = validateConfigObjectRaw(params.config, {
touchedPaths: params.operations.map((operation) => operation.setPath),
validateBundledChannels: true,
});
if (validated.ok) {
return [];