From 6bddc6ce96e71c8c158dff0c512c2906074b7f74 Mon Sep 17 00:00:00 2001 From: MTLantoine Date: Mon, 11 Jan 2021 14:42:51 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20add=20new=20config.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .circleci/config.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..737131f --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,21 @@ +version: 2.1 +jobs: + build: + docker: &shared_docker + - image: circleci/node:12 + steps: + - checkout + - restore_cache: + keys: + - npm-v2-dependencies-{{ checksum "yarn.lock" }} + - run: yarn install + - save_cache: + paths: + - ./node_modules + key: npm-v2-dependencies-{{ checksum "yarn.lock" }} + +workflows: + version: 2 + mybuild: + jobs: + - build \ No newline at end of file