From 47420d66296736110fce493aab7f3516a2a98b49 Mon Sep 17 00:00:00 2001 From: Logan-Chenavier Date: Sat, 16 Jan 2021 14:30:04 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=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..51a56cd --- /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