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:
Colin McDonnell
2026-02-14 02:10:18 +00:00
committed by pullfrog[bot]
parent 8037c118cc
commit 8a64742ddf
2 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -25,7 +25,7 @@ jobs:
contents: read
id-token: write
strategy:
fail-fast: false
fail-fast: true
matrix:
agent: [claude, codex, cursor, gemini, opencode]
test:
@@ -55,7 +55,7 @@ jobs:
contents: read
id-token: write
strategy:
fail-fast: false
fail-fast: true
matrix:
test:
[
+6 -6
View File
@@ -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);
});
});
});