From 03bc8f3a6e0f42ab8609e3339227a337741bacda Mon Sep 17 00:00:00 2001 From: Henric Trotzig Date: Mon, 7 Jan 2019 22:35:57 +0100 Subject: [PATCH 1/3] Make small change to Button story --- src/stories/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stories/index.js b/src/stories/index.js index aa04241..cf2c4a5 100644 --- a/src/stories/index.js +++ b/src/stories/index.js @@ -13,7 +13,7 @@ storiesOf('Button', module) .add('with some emoji', () => ( )); From 4fa615ba4e1d3e6b192cc116920bbe8b903c1d11 Mon Sep 17 00:00:00 2001 From: Henric Trotzig Date: Tue, 8 Jan 2019 09:23:56 +0100 Subject: [PATCH 2/3] Try parallell CircleCI jobs --- .circleci/config.yml | 33 +++++++++++++++++++++++---------- 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bfeedf7..9423eb4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,18 +1,31 @@ -# Javascript Node CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-javascript/ for more details -# -version: 2 +version: 2.1 + +orbs: + happo: happo/happo@dev:fifth + jobs: - build: + happo: docker: - - image: circleci/node:10 + - image: circleci/node:8 + + steps: + - checkout + - happo/run_happo + - working_directory: ~/repo + happo_two: + docker: + - image: circleci/node:8 steps: - checkout - - run: yarn install - - run: yarn happo-ci + - happo/run_happo + +workflows: + version: 2.1 + run_all: + jobs: + - happo + - happo_two From b26225cbcb4320ee59fbf4892745c7f9fe4eaf26 Mon Sep 17 00:00:00 2001 From: Henric Trotzig Date: Tue, 8 Jan 2019 09:36:26 +0100 Subject: [PATCH 3/3] Try orb-provided job --- .circleci/config.yml | 24 ++---------------------- 1 file changed, 2 insertions(+), 22 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9423eb4..68ceb98 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,31 +1,11 @@ version: 2.1 orbs: - happo: happo/happo@dev:fifth - -jobs: - happo: - docker: - - image: circleci/node:8 - - steps: - - checkout - - happo/run_happo - - - happo_two: - docker: - - image: circleci/node:8 - - steps: - - checkout - - happo/run_happo - + happo: happo/happo@dev:seventh workflows: version: 2.1 run_all: jobs: - - happo - - happo_two + - happo/run