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 751085b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -980,30 +980,30 @@ workflows:
requires:
- build
- create-sandboxes:
parallelism: 37
parallelism: 38
requires:
- build
# - smoke-test-sandboxes: # disabled for now
# requires:
# - create-sandboxes
- build-sandboxes:
parallelism: 37
parallelism: 38
requires:
- create-sandboxes
- chromatic-sandboxes:
parallelism: 34
parallelism: 35
requires:
- build-sandboxes
- e2e-production:
parallelism: 32
parallelism: 33
requires:
- build-sandboxes
- e2e-dev:
parallelism: 2
requires:
- create-sandboxes
- test-runner-production:
parallelism: 32
parallelism: 33
requires:
- build-sandboxes
- vitest-integration:
Expand Down
8 changes: 4 additions & 4 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 @@ -831,6 +829,8 @@ export const daily: TemplateKey[] = [
'html-vite/default-js',
'internal/react16-webpack',
'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 751085b

Please sign in to comment.