Skip to content

Commit

Permalink
Added marko cli smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Aug 24, 2018
1 parent 417b785 commit b28b89a
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,47 +57,47 @@ jobs:
name: Workaround for https://github.com/GoogleChrome/puppeteer/issues/290
command: sh ./scripts/workaround-puppeteer-issue-290.sh
- run:
name: "Build react kitchen-sink"
name: Build react kitchen-sink
command: |
cd examples/cra-kitchen-sink
yarn build-storybook
- run:
name: "Build vue kitchen-sink"
name: Build vue kitchen-sink
command: |
cd examples/vue-kitchen-sink
yarn build-storybook
- run:
name: "Build svelte kitchen-sink"
name: Build svelte kitchen-sink
command: |
cd examples/svelte-kitchen-sink
yarn build-storybook
- run:
name: "Build angular-cli"
name: Build angular-cli
command: |
cd examples/angular-cli
yarn build-storybook
- run:
name: "Build polymer-cli"
name: Build polymer-cli
command: |
cd examples/polymer-cli
yarn build-storybook
- run:
name: "Build marko-cli"
name: Build marko-cli
command: |
cd examples/marko-cli
yarn build-storybook
- run:
name: "Build official-storybook"
name: Build official-storybook
command: |
cd examples/official-storybook
yarn build-storybook
- run:
name: "Build mithril kitchen-sink"
name: Build mithril kitchen-sink
command: |
cd examples/mithril-kitchen-sink
yarn build-storybook
- run:
name: "Run image snapshots"
name: Run image snapshots
command: yarn test --image
- store_artifacts:
path: examples/official-storybook/image-snapshots/__image_snapshots__
Expand All @@ -109,37 +109,42 @@ jobs:
- attach_workspace:
at: .
- run:
name: "Run react kitchen-sink (smoke test)"
name: Run react kitchen-sink (smoke test)
command: |
cd examples/cra-kitchen-sink
yarn storybook --smoke-test
- run:
name: "Run vue kitchen-sink (smoke test)"
name: Run vue kitchen-sink (smoke test)
command: |
cd examples/vue-kitchen-sink
yarn storybook --smoke-test
- run:
name: "Run svelte kitchen-sink (smoke test)"
name: Run svelte kitchen-sink (smoke test)
command: |
cd examples/svelte-kitchen-sink
yarn storybook --smoke-test
- run:
name: "Run angular-cli (smoke test)"
name: Run angular-cli (smoke test)
command: |
cd examples/angular-cli
yarn storybook --smoke-test
- run:
name: "Run polymer-cli (smoke test)"
name: Run polymer-cli (smoke test)
command: |
cd examples/polymer-cli
yarn storybook --smoke-test
- run:
name: "Run official-storybook (smoke test)"
name: Run marko-cli (smoke test)
command: |
cd examples/marko-cli
yarn storybook --smoke-test
- run:
name: Run official-storybook (smoke test)
command: |
cd examples/official-storybook
yarn storybook --smoke-test
- run:
name: "Run mithril kitchen-sink (smoke test)"
name: Run mithril kitchen-sink (smoke test)
command: |
cd examples/mithril-kitchen-sink
yarn storybook --smoke-test
Expand All @@ -153,17 +158,17 @@ jobs:
name: Bootstrap
command: yarn bootstrap --reactnative --reactnativeapp
- run:
name: "Run React-Native example"
name: Run React-Native example
command: |
cd examples/react-native-vanilla
yarn storybook --smoke-test
- run:
name: "Run React-Native-App example"
name: Run React-Native-App example
command: |
cd examples/crna-kitchen-sink
yarn storybook --smoke-test
- run:
name: "Run React-Native unit tests"
name: Run React-Native unit tests
command: |
yarn test --coverage --runInBand --reactnative
yarn coverage
Expand Down

0 comments on commit b28b89a

Please sign in to comment.