Use npm ci --ignore-scripts in update_schemastore.py (#16915)

This commit is contained in:
William Woodruff
2025-12-01 18:36:55 -05:00
committed by GitHub
parent 23b8fc9d18
commit 3347e196bb

View File

@@ -45,8 +45,8 @@ def update_schemastore(schemastore: Path, *, root: Path) -> None:
cwd=schemastore,
)
# Run npm install
check_call(["npm", "install"], cwd=schemastore)
# Run npm ci
check_call(["npm", "ci", "--ignore-scripts"], cwd=schemastore)
src = schemastore.joinpath("src")