mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Merge pull request #19662 from storybookjs/tech/check-not-parallel-in-ci
Tech/check-not-parallel-in-ci
This commit is contained in:
commit
2ca9a5d08c
@ -1,4 +1,4 @@
|
||||
import { Store_StoryIndex } from '@storybook/types';
|
||||
import type { Store_StoryIndex } from '@storybook/types';
|
||||
|
||||
export function summarizeIndex(storyIndex: Store_StoryIndex) {
|
||||
let storyCount = 0;
|
||||
|
@ -2,7 +2,9 @@ import type { Task } from '../task';
|
||||
import { exec } from '../utils/exec';
|
||||
import { maxConcurrentTasks } from '../utils/maxConcurrentTasks';
|
||||
|
||||
const command = `nx run-many --target="check" --all --parallel=${maxConcurrentTasks} --exclude=@storybook/addon-storyshots,@storybook/addon-storyshots-puppeteer`;
|
||||
const parallel = process.env.CI ? 2 : maxConcurrentTasks;
|
||||
|
||||
const command = `nx run-many --target="check" --all --parallel=${parallel} --exclude=@storybook/addon-storyshots,@storybook/addon-storyshots-puppeteer`;
|
||||
|
||||
export const check: Task = {
|
||||
description: 'Typecheck the source code of the monorepo',
|
||||
|
Loading…
x
Reference in New Issue
Block a user