mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 18:11:07 +08:00
Made some changes (along with @ KyleTryon ) to the config file in order to increase the performance and decrease credit usage, primarily via the usage of different size executors. Also wrote a framework for more easily specifying the executor and size in the config file. These changes, though small, should add up to fewer consumed credits.
356 lines
8.8 KiB
YAML
356 lines
8.8 KiB
YAML
version: 2.1
|
|
|
|
executors:
|
|
sb_node:
|
|
parameters:
|
|
class:
|
|
description: The Resource class
|
|
type: enum
|
|
enum: ["small", "medium", "large", "xlarge"]
|
|
default: "medium"
|
|
working_directory: /tmp/storybook
|
|
docker:
|
|
- image: circleci/node:10-browsers
|
|
resource_class: <<parameters.class>>
|
|
|
|
jobs:
|
|
install:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
name: Restore core dependencies cache
|
|
keys:
|
|
- core-dependencies-v5-{{ checksum "yarn.lock" }}
|
|
- core-dependencies-v5-
|
|
- run:
|
|
name: Install dependencies
|
|
command: yarn install
|
|
- run:
|
|
name: Check that yarn.lock is not corrupted
|
|
command: yarn repo-dirty-check
|
|
- save_cache:
|
|
name: Cache core dependencies
|
|
key: core-dependencies-v5-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- node_modules
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- node_modules
|
|
- examples
|
|
- addons
|
|
- dev-kits
|
|
- app
|
|
- lib
|
|
build:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Bootstrap
|
|
command: yarn bootstrap --core
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- examples
|
|
- addons
|
|
- dev-kits
|
|
- app
|
|
- lib
|
|
chromatic:
|
|
executor: sb_node
|
|
parallelism: 11
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: examples
|
|
command: |
|
|
yarn run-chromatics
|
|
packtracker:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Report webpack stats for manager of official storybook
|
|
command: |
|
|
cd examples/official-storybook
|
|
yarn packtracker
|
|
examples:
|
|
executor: sb_node
|
|
parallelism: 11
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: examples
|
|
command: |
|
|
yarn build-storybooks
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- built-storybooks
|
|
publish:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: running local registry
|
|
command: yarn local-registry --publish
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- .verdaccio-cache
|
|
examples-v2:
|
|
docker:
|
|
- image: cypress/included:4.7.0
|
|
environment:
|
|
TERM: xterm
|
|
working_directory: /tmp/storybook
|
|
parallelism: 10
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: running local registry
|
|
command: yarn local-registry --port 6000 --open
|
|
background: true
|
|
- run:
|
|
name: wait for registry
|
|
command: yarn wait-on http://localhost:6000
|
|
- run:
|
|
name: set registry
|
|
command: yarn config set registry http://localhost:6000/
|
|
- run:
|
|
name: test local registry
|
|
command: yarn info @storybook/core
|
|
- run:
|
|
name: run e2e tests
|
|
command: yarn test:e2e-framework
|
|
- store_artifacts:
|
|
path: /tmp/storybook/cypress
|
|
destination: cypress
|
|
examples-v2-yarn-2:
|
|
docker:
|
|
- image: cypress/included:4.7.0
|
|
environment:
|
|
TERM: xterm
|
|
working_directory: /tmp/storybook
|
|
# parallelism: 10
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: running local registry
|
|
command: yarn local-registry --port 6000 --open
|
|
background: true
|
|
- run:
|
|
name: wait for registry
|
|
command: yarn wait-on http://localhost:6000
|
|
- run:
|
|
name: set registry
|
|
command: yarn config set registry http://localhost:6000/
|
|
- run:
|
|
name: test local registry
|
|
command: yarn info @storybook/core
|
|
- run:
|
|
name: run e2e tests
|
|
command: yarn test:e2e-framework --use-yarn-2 cra
|
|
- store_artifacts:
|
|
path: /tmp/storybook/cypress
|
|
destination: cypress
|
|
e2e:
|
|
working_directory: /tmp/storybook
|
|
docker:
|
|
- image: cypress/included:4.7.0
|
|
environment:
|
|
TERM: xterm
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: running example
|
|
command: yarn serve-storybooks
|
|
background: true
|
|
- run:
|
|
name: await running examples
|
|
command: yarn await-serve-storybooks
|
|
- run:
|
|
name: cypress run
|
|
command: yarn test:e2e
|
|
- store_artifacts:
|
|
path: /tmp/storybook/cypress
|
|
destination: cypress
|
|
|
|
smoke-tests:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Run react kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/cra-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run react typescript kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/cra-ts-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run vue kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/vue-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run svelte kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/svelte-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run angular-cli (smoke test)
|
|
command: |
|
|
cd examples/angular-cli
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run ember-cli (smoke test)
|
|
command: |
|
|
cd examples/ember-cli
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run marko-cli (smoke test)
|
|
command: |
|
|
cd examples/marko-cli
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run official-storybook (smoke test)
|
|
command: |
|
|
cd examples/official-storybook
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run mithril kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/mithril-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run riot kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/riot-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run preact kitchen-sink (smoke test)
|
|
command: |
|
|
cd examples/preact-kitchen-sink
|
|
yarn storybook --smoke-test --quiet
|
|
- run:
|
|
name: Run cra reac15 (smoke test)
|
|
command: |
|
|
cd examples/cra-react15
|
|
yarn storybook --smoke-test --quiet
|
|
frontpage:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- restore_cache:
|
|
name: Restore core dependencies cache
|
|
keys:
|
|
- core-dependencies-v5-{{ checksum "yarn.lock" }}
|
|
- run:
|
|
name: Install dependencies
|
|
command: yarn bootstrap --install
|
|
- run:
|
|
name: Trigger build
|
|
command: ./scripts/build-frontpage.js
|
|
lint:
|
|
executor:
|
|
class: small
|
|
name: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Lint
|
|
command: yarn lint
|
|
test:
|
|
executor: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Test
|
|
command: yarn test --coverage --w2 --core
|
|
- persist_to_workspace:
|
|
root: .
|
|
paths:
|
|
- coverage
|
|
coverage:
|
|
executor:
|
|
class: small
|
|
name: sb_node
|
|
steps:
|
|
- checkout
|
|
- attach_workspace:
|
|
at: .
|
|
- run:
|
|
name: Upload coverage
|
|
command: yarn coverage
|
|
|
|
workflows:
|
|
test:
|
|
jobs:
|
|
- install
|
|
- build:
|
|
requires:
|
|
- install
|
|
- lint:
|
|
requires:
|
|
- build
|
|
- examples:
|
|
requires:
|
|
- build
|
|
- e2e:
|
|
requires:
|
|
- examples
|
|
- smoke-tests:
|
|
requires:
|
|
- build
|
|
- packtracker:
|
|
requires:
|
|
- build
|
|
- test:
|
|
requires:
|
|
- build
|
|
- coverage:
|
|
requires:
|
|
- test
|
|
- chromatic:
|
|
requires:
|
|
- examples
|
|
- publish:
|
|
requires:
|
|
- build
|
|
- examples-v2:
|
|
requires:
|
|
- publish
|
|
- examples-v2-yarn-2:
|
|
requires:
|
|
- publish
|
|
deploy:
|
|
jobs:
|
|
- frontpage
|