sync action workflow fail-fast to match root workflow
the root workflow was updated to fail-fast: true but the action workflow wasn't updated to match. the ci consistency test enforces they stay in sync. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
committed by
pullfrog[bot]
parent
8037c118cc
commit
8a64742ddf
+6
-6
@@ -114,9 +114,9 @@ describe("ci workflow consistency", () => {
|
||||
expect(getEnvVarNames(rootJob)).toEqual(expectedAgentEnvVars);
|
||||
});
|
||||
|
||||
it("fail-fast is disabled in both", () => {
|
||||
expect(rootJob.strategy!["fail-fast"]).toBe(false);
|
||||
expect(actionJob.strategy!["fail-fast"]).toBe(false);
|
||||
it("fail-fast is enabled in both", () => {
|
||||
expect(rootJob.strategy!["fail-fast"]).toBe(true);
|
||||
expect(actionJob.strategy!["fail-fast"]).toBe(true);
|
||||
});
|
||||
});
|
||||
|
||||
@@ -148,9 +148,9 @@ describe("ci workflow consistency", () => {
|
||||
expect(getEnvVarNames(rootJob)).toEqual(expectedAgnosticEnvVars);
|
||||
});
|
||||
|
||||
it("fail-fast is disabled in both", () => {
|
||||
expect(rootJob.strategy!["fail-fast"]).toBe(false);
|
||||
expect(actionJob.strategy!["fail-fast"]).toBe(false);
|
||||
it("fail-fast is enabled in both", () => {
|
||||
expect(rootJob.strategy!["fail-fast"]).toBe(true);
|
||||
expect(actionJob.strategy!["fail-fast"]).toBe(true);
|
||||
});
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user