Commit ce7e8b4
authored
Use
The `deploy-docs` workflow failed when triggered manually because it relied on `npm ci`, which requires a committed `package-lock.json`. This repository intentionally gitignores `package-lock.json` (see `.gitignore`), so the install step always errored out with `EUSAGE`.
Replace `npm ci --ignore-scripts` with `npm install --ignore-scripts --no-audit --no-fund` to keep the intent (skip native build scripts, avoid noisy output) while working without a lockfile.
Fix: #1489npm install in deploy-docs workflow (#1491)1 parent e54a991 commit ce7e8b4
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
40 | 40 | | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
| 43 | + | |
44 | 44 | | |
45 | 45 | | |
46 | 46 | | |
| |||
0 commit comments