build script skips lint, type-check, and article validation #34
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Location
package.json,scripts.buildProblem
The build script
"build": "qwik build && bun run scripts/generate-sitemap.ts && bun run images:optimize"doesn't run any quality gates.Suggested fix
Restructure:
Or add a prebuild validate step.
Added
ciscript to package.json with quality gates: fmt.check → lint → build.types → validate-article.ts → build. Pushed inceeec5b.