Skip to content

Commit

Permalink
ci: add alpha, beta, rc to build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Romakita committed Sep 9, 2024
1 parent d6be689 commit 2a66ded
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .gflowrc
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"flow": "gflow",
"remote": "origin",
"develop": "production",
"develop": "alpha",
"production": "production",
"ignores": [],
"syncAfterFinish": false,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
push:
branches: [production, alpha, beta, rc]
pull_request:
branches: [production]
branches: [production, alpha, beta, rc]
types: [opened, synchronize, closed]

concurrency:
Expand Down
4 changes: 2 additions & 2 deletions packages/platform/platform-cache/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export default defineConfig(
...presets.test.coverage,
thresholds: {
statements: 100,
branches: 94.21,
branches: 94.16,
functions: 100,
lines: 100
}
}
}
}
);
);
4 changes: 2 additions & 2 deletions packages/platform/platform-koa/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export default defineConfig(
...presets.test.coverage,
thresholds: {
statements: 99.15,
branches: 95.65,
branches: 95.6,
functions: 100,
lines: 99.15
}
}
}
}
);
);
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ describe("OidcProvider", () => {
);

expect((oidcProvider as any).injector.logger.error).toHaveBeenCalledWith({
duration: 0,
duration: expect.any(Number),
reqId: "",
account_id: "account_id",
error: {error_description: "error_description", error_detail: "error_detail", error: "error"},
Expand Down
2 changes: 1 addition & 1 deletion packages/third-parties/formio/src/FormioModule.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ describe("FormioModule", () => {
method: "get",
methodClassName: "operationId",
name: "operationId",
url: "/path/to"
url: "/projects/path/to"
}
]);
});
Expand Down
4 changes: 2 additions & 2 deletions packages/third-parties/temporal/vitest.config.mts
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ export default defineConfig(
...presets.test.coverage,
thresholds: {
statements: 92.36,
branches: 70.37,
branches: 69.23,
functions: 88.88,
lines: 92.36
}
}
}
}
);
);

0 comments on commit 2a66ded

Please sign in to comment.