fix: gate releases on full tests

This commit is contained in:
Armin Ronacher
2026-07-09 21:16:18 +02:00
parent fbdd46389c
commit 532134428a
2 changed files with 23 additions and 3 deletions
+6 -2
View File
@@ -11,7 +11,7 @@
* 2. Bump version via npm run version:xxx or set an explicit version
* 3. Update CHANGELOG.md files: [Unreleased] -> [version] - date
* 4. Regenerate release artifacts
* 5. Run checks
* 5. Run checks and tests
* 6. Commit and tag the release
* 7. Add new [Unreleased] section to changelogs
* 8. Commit next-cycle changelog updates
@@ -172,11 +172,15 @@ run("npm run shrinkwrap:coding-agent");
run("npm run install-lock:coding-agent");
console.log();
// 5. Run checks
// 5. Run checks and tests
console.log("Running checks...");
run("npm run check");
console.log();
console.log("Running tests...");
run("./test.sh");
console.log();
// 6. Commit and tag
console.log("Committing and tagging...");
stageChangedFiles();