From a487ecf1a5f842e2ca8b2c0b7d272164a22640f3 Mon Sep 17 00:00:00 2001 From: Izaya <52576616+Izaya-San@users.noreply.github.com> Date: Tue, 20 Oct 2020 11:21:53 +0200 Subject: [PATCH 1/3] Add .circleci/config.yml --- .circleci/config.yml | 32 +++----------------------------- 1 file changed, 3 insertions(+), 29 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 75e5d76d..dbfd56f7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,33 +1,7 @@ version: 2.1 -jobs: - build-test: - docker: - # specify the version you desire here - - image: circleci/node:12 - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "package.json" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: curl -o- -L https://yarnpkg.com/install.sh | bash - - run: yarn install - - - save_cache: - paths: - - node_modules - key: v1-dependencies-{{ checksum "package.json" }} - - # run tests! - - run: yarn test - - run: yarn build - +orbs: + node: circleci/node@3.0.0 workflows: node-tests: jobs: - - build-test + - node/test From ac65737293dfe4b78081e5c57bebe82c80986228 Mon Sep 17 00:00:00 2001 From: Izaya <52576616+Izaya-San@users.noreply.github.com> Date: Tue, 20 Oct 2020 11:35:02 +0200 Subject: [PATCH 2/3] Update config.yml --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dbfd56f7..157fe5cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,4 +4,4 @@ orbs: workflows: node-tests: jobs: - - node/test + - welcome/run From 21345132ffdf7c3a884300d48e50522d9ac4aa91 Mon Sep 17 00:00:00 2001 From: Izaya <52576616+Izaya-San@users.noreply.github.com> Date: Tue, 20 Oct 2020 11:37:25 +0200 Subject: [PATCH 3/3] Update config.yml --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 157fe5cf..e13e98f9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 orbs: - node: circleci/node@3.0.0 + welcome: circleci/welcome-orb@0.4.1 workflows: - node-tests: + welcome: jobs: - welcome/run