ci: trigga på master + formatfix inför Gitea Actions
CI / Typecheck, test & build (push) Failing after 2s
CI / Typecheck, test & build (push) Failing after 2s
This commit is contained in:
@@ -589,12 +589,7 @@ export const VERIFICATION_STATUSES = [
|
||||
export type VerificationStatus = (typeof VERIFICATION_STATUSES)[number];
|
||||
|
||||
/** Inventory Trust Engine (Fas 2): computed trust state per item. */
|
||||
export const TRUST_STATES = [
|
||||
"unverified",
|
||||
"trusted",
|
||||
"decaying",
|
||||
"stale",
|
||||
] as const;
|
||||
export const TRUST_STATES = ["unverified", "trusted", "decaying", "stale"] as const;
|
||||
export type TrustState = (typeof TRUST_STATES)[number];
|
||||
|
||||
// ---------------------------------------------------------------------------
|
||||
|
||||
@@ -2,12 +2,7 @@
|
||||
* Release gate definitions and go/no-go taxonomy (spec §17).
|
||||
*/
|
||||
|
||||
export const RELEASE_GATE_CATEGORIES = [
|
||||
"product",
|
||||
"quality",
|
||||
"retention",
|
||||
"economy",
|
||||
] as const;
|
||||
export const RELEASE_GATE_CATEGORIES = ["product", "quality", "retention", "economy"] as const;
|
||||
|
||||
export type ReleaseGateCategory = (typeof RELEASE_GATE_CATEGORIES)[number];
|
||||
|
||||
@@ -71,7 +66,8 @@ export const BUILT_IN_RELEASE_GATES: Array<{
|
||||
category: "product",
|
||||
nameSv: "Recept sparat eller tillagat dag 0",
|
||||
nameEn: "Recipe saved or cooked on day 0",
|
||||
descriptionSv: "Andel användare som sparar eller startar ett recept samma dag som registrering.",
|
||||
descriptionSv:
|
||||
"Andel användare som sparar eller startar ett recept samma dag som registrering.",
|
||||
descriptionEn: "Share of users who save or start cooking a recipe on registration day.",
|
||||
targetValue: 0.35,
|
||||
comparison: "gte",
|
||||
@@ -83,7 +79,8 @@ export const BUILT_IN_RELEASE_GATES: Array<{
|
||||
category: "product",
|
||||
nameSv: "Andra lagerhändelsen inom 7 dagar",
|
||||
nameEn: "Second inventory event within 7 days",
|
||||
descriptionSv: "Andel användare som lägger till, konsumerar eller kasserar en vara inom en vecka.",
|
||||
descriptionSv:
|
||||
"Andel användare som lägger till, konsumerar eller kasserar en vara inom en vecka.",
|
||||
descriptionEn: "Share of users who add, consume, or discard an item within one week.",
|
||||
targetValue: 0.25,
|
||||
comparison: "gte",
|
||||
|
||||
Reference in New Issue
Block a user