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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

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")