You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: code/lib/cli-storybook/src/sandbox-templates.ts
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,8 @@ export type Template = {
98
98
};
99
99
/** Additional CI steps in case this template has special needs during CI. */
100
100
extraCiSteps?: {
101
-
useNode22?: boolean;
101
+
// Some sandboxes (e.g. Angular) rely on Node 22.22.1 as minimum supported version and threfore it needs enforcing, even if the CI image comes with a different node version.
102
+
ensureMinNodeVersion?: boolean;
102
103
};
103
104
/** Additional options to pass to the initiate command when initializing Storybook. */
0 commit comments