mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 20:01:08 +08:00
Add build task
This commit is contained in:
parent
a462193038
commit
d9d13d2932
@ -506,19 +506,14 @@ jobs:
|
|||||||
at: .
|
at: .
|
||||||
- run:
|
- run:
|
||||||
name: Building Sandboxes
|
name: Building Sandboxes
|
||||||
command: yarn build-sandboxes --cadence ci --junit test-results/build.xml
|
command: yarn task --task build --template $(yarn get-template ci) --force --no-before --junit
|
||||||
working_directory: code
|
|
||||||
- run:
|
|
||||||
name: Build index.html
|
|
||||||
command: yarn create-built-sandboxes-index --cadence ci --output "../built-sandboxes"
|
|
||||||
background: true
|
|
||||||
working_directory: code
|
working_directory: code
|
||||||
- store_test_results:
|
- store_test_results:
|
||||||
path: code/test-results
|
path: code/test-results
|
||||||
- persist_to_workspace:
|
- persist_to_workspace:
|
||||||
root: .
|
root: .
|
||||||
paths:
|
paths:
|
||||||
- built-sandboxes
|
- sandbox
|
||||||
test-runner-sandboxes:
|
test-runner-sandboxes:
|
||||||
executor:
|
executor:
|
||||||
class: medium+
|
class: medium+
|
||||||
|
@ -8,6 +8,7 @@ import { bootstrap } from './tasks/bootstrap';
|
|||||||
import { publish } from './tasks/publish';
|
import { publish } from './tasks/publish';
|
||||||
import { create } from './tasks/create';
|
import { create } from './tasks/create';
|
||||||
import { smokeTest } from './tasks/smoke-test';
|
import { smokeTest } from './tasks/smoke-test';
|
||||||
|
import { build } from './tasks/build';
|
||||||
|
|
||||||
import TEMPLATES from '../code/lib/cli/src/repro-templates';
|
import TEMPLATES from '../code/lib/cli/src/repro-templates';
|
||||||
|
|
||||||
@ -38,6 +39,7 @@ export const tasks = {
|
|||||||
publish,
|
publish,
|
||||||
create,
|
create,
|
||||||
'smoke-test': smokeTest,
|
'smoke-test': smokeTest,
|
||||||
|
build,
|
||||||
};
|
};
|
||||||
|
|
||||||
type TaskKey = keyof typeof tasks;
|
type TaskKey = keyof typeof tasks;
|
||||||
|
14
scripts/tasks/build.ts
Normal file
14
scripts/tasks/build.ts
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
import { pathExists } from 'fs-extra';
|
||||||
|
import { join } from 'path';
|
||||||
|
import type { Task } from '../task';
|
||||||
|
import { exec } from '../utils/exec';
|
||||||
|
|
||||||
|
export const build: Task = {
|
||||||
|
before: ['create'],
|
||||||
|
async ready(_, { sandboxDir }) {
|
||||||
|
return pathExists(join(sandboxDir, 'storybook-static'));
|
||||||
|
},
|
||||||
|
async run(_, { sandboxDir }) {
|
||||||
|
return exec(`yarn build-storybook --quiet`, { cwd: sandboxDir });
|
||||||
|
},
|
||||||
|
};
|
@ -7,6 +7,6 @@ export const smokeTest: Task = {
|
|||||||
return false;
|
return false;
|
||||||
},
|
},
|
||||||
async run(_, { sandboxDir }) {
|
async run(_, { sandboxDir }) {
|
||||||
return exec(`'yarn storybook --smoke-test --quiet`, { cwd: sandboxDir });
|
return exec(`yarn storybook --smoke-test --quiet`, { cwd: sandboxDir });
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user