From e8ab768e33c241eba8dea01b9ee39510bb18568c Mon Sep 17 00:00:00 2001 From: seunAwonugba <86803598+seunAwonugba@users.noreply.github.com> Date: Sat, 2 Jul 2022 13:18:40 +0100 Subject: [PATCH 1/2] implement circle ci config file --- circle-ci-config.yml | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 circle-ci-config.yml diff --git a/circle-ci-config.yml b/circle-ci-config.yml new file mode 100644 index 000000000..9fb01e30c --- /dev/null +++ b/circle-ci-config.yml @@ -0,0 +1,33 @@ +version: 2.1 +jobs: + build: + docker: + - image: circleci/node:13.8.0 + steps: + - checkout + - run: npm i + - run: npm run lint + test: + docker: + - image: circleci/node:13.8.0 + steps: + - checkout + - run: npm i + - run: npm run test + analyse: + docker: + - image: circleci/node:13.8.0 + steps: + - checkout + - run: npm audit + +workflows: + ci_pipeline_workflow: + jobs: + - build + - test: + requires: + - build + - analyse: + requires: + - test From ccae32dd3ebf2237a1d256cda884398f7010432c Mon Sep 17 00:00:00 2001 From: seunAwonugba <86803598+seunAwonugba@users.noreply.github.com> Date: Sat, 2 Jul 2022 13:21:38 +0100 Subject: [PATCH 2/2] added .circleci folder --- circle-ci-config.yml => .circleci/config.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename circle-ci-config.yml => .circleci/config.yml (100%) diff --git a/circle-ci-config.yml b/.circleci/config.yml similarity index 100% rename from circle-ci-config.yml rename to .circleci/config.yml