Skip to content

Commit

Permalink
Tweak RNW CI
Browse files Browse the repository at this point in the history
  • Loading branch information
shilman committed Nov 17, 2024
1 parent 4fb8b02 commit d787436
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/lib/cli-storybook/src/sandbox-templates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -609,7 +609,7 @@ const baseTemplates = {
renderer: '@storybook/react',
builder: '@storybook/builder-vite',
},
skipTasks: ['bench', 'vitest-integration'],
skipTasks: ['e2e-tests-dev', 'bench', 'vitest-integration'],
},
'react-native-web-vite/rn-cli-ts': {
// NOTE: create-expo-app installs React 18.2.0. But yarn portal
Expand All @@ -628,7 +628,7 @@ const baseTemplates = {
renderer: '@storybook/react',
builder: '@storybook/builder-vite',
},
skipTasks: ['bench', 'vitest-integration'],
skipTasks: ['e2e-tests-dev', 'bench', 'vitest-integration'],
},
} satisfies Record<string, BaseTemplates>;

Expand Down Expand Up @@ -797,8 +797,6 @@ export const normal: TemplateKey[] = [
'bench/react-vite-default-ts-test-build',
'bench/react-webpack-18-ts-test-build',
'ember/default-js',
'react-native-web-vite/expo-ts',
'react-native-web-vite/rn-cli-ts',
];

export const merged: TemplateKey[] = [
Expand Down Expand Up @@ -830,7 +828,9 @@ export const daily: TemplateKey[] = [
'preact-vite/default-js',
'html-vite/default-js',
'internal/react16-webpack',
'internal/react18-webpack-babel',
// 'internal/react18-webpack-babel',
'react-native-web-vite/expo-ts',
// 'react-native-web-vite/rn-cli-ts',
];

export const templatesByCadence = { normal, merged, daily };

0 comments on commit d787436

Please sign in to comment.