From 35e2790edf0999a673ef3a07c42b62cd9e565c5a Mon Sep 17 00:00:00 2001 From: HenriBoulnois Date: Sat, 15 Jan 2022 12:53:39 +0100 Subject: [PATCH] :construction_worker: add config file --- .circleci/config.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..5f4ca0d --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,23 @@ +version: 2 +jobs: + build: &shared-config + docker: + - image: circleci/node:lts-fermium + working_directory: ~/repo + steps: + - checkout + - restore_cache: + keys: + - dependencies-{{ checksum "package.json" }}-v1 + - dependencies- + - run: yarn install + - save_cache: + paths: + - node_modules + key: dependencies-{{ checksum "package.json" }}-v1 + +workflows: + version: 2 + build-test-and-lint: + jobs: + - build \ No newline at end of file