Merge pull request #19662 from storybookjs/tech/check-not-parallel-in-ci

Tech/check-not-parallel-in-ci
This commit is contained in:
Norbert de Langen 2022-10-28 11:23:53 +02:00 committed by GitHub
commit 2ca9a5d08c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -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;

View File

@ -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',