I have release build step and a test build step.
How do I make the release step not run unless the test step succeeds?
My release step still runs when my tests fail when I make the release step depend on the test step.
const step_test = b.step("test", "Run unit tests.");
const step_release = b.step("release", "Build the release binaries.");
step_release.dependOn(step_test);
