test regex

This commit is contained in:
Jonathan Budzenski 2022-07-12 11:37:34 -05:00
parent 3d52156183
commit dcef465414
2 changed files with 2 additions and 2 deletions

View file

@ -127,7 +127,7 @@ const uploadPipeline = (pipelineContent: string | object) => {
}
if (
(await doAnyChangesMatch([/.*stories.*/])) ||
(await doAnyChangesMatch([/.*stor(ies|y).*/])) ||
GITHUB_PR_LABELS.includes('ci:build-storybooks')
) {
pipeline.push(getPipeline('.buildkite/pipelines/pull_request/storybooks.yml'));

View file

@ -61,4 +61,4 @@ storiesOf(
isLoading={false}
/>
))
.add('interactive demo', () => <InteractiveDemo />);
.add('test demo', () => <InteractiveDemo />);