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
@@ -25,7 +25,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
agent: [claude, codex, cursor, gemini, opencode]
|
agent: [claude, codex, cursor, gemini, opencode]
|
||||||
test:
|
test:
|
||||||
@@ -55,7 +55,7 @@ jobs:
|
|||||||
contents: read
|
contents: read
|
||||||
id-token: write
|
id-token: write
|
||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: true
|
||||||
matrix:
|
matrix:
|
||||||
test:
|
test:
|
||||||
[
|
[
|
||||||
|
|||||||
+6
-6
@@ -114,9 +114,9 @@ describe("ci workflow consistency", () => {
|
|||||||
expect(getEnvVarNames(rootJob)).toEqual(expectedAgentEnvVars);
|
expect(getEnvVarNames(rootJob)).toEqual(expectedAgentEnvVars);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("fail-fast is disabled in both", () => {
|
it("fail-fast is enabled in both", () => {
|
||||||
expect(rootJob.strategy!["fail-fast"]).toBe(false);
|
expect(rootJob.strategy!["fail-fast"]).toBe(true);
|
||||||
expect(actionJob.strategy!["fail-fast"]).toBe(false);
|
expect(actionJob.strategy!["fail-fast"]).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -148,9 +148,9 @@ describe("ci workflow consistency", () => {
|
|||||||
expect(getEnvVarNames(rootJob)).toEqual(expectedAgnosticEnvVars);
|
expect(getEnvVarNames(rootJob)).toEqual(expectedAgnosticEnvVars);
|
||||||
});
|
});
|
||||||
|
|
||||||
it("fail-fast is disabled in both", () => {
|
it("fail-fast is enabled in both", () => {
|
||||||
expect(rootJob.strategy!["fail-fast"]).toBe(false);
|
expect(rootJob.strategy!["fail-fast"]).toBe(true);
|
||||||
expect(actionJob.strategy!["fail-fast"]).toBe(false);
|
expect(actionJob.strategy!["fail-fast"]).toBe(true);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user