From 6a2f552cfff9d2eb1318343a5a29ca3da917c2fb Mon Sep 17 00:00:00 2001 From: cyrille Date: Wed, 8 May 2019 17:20:56 +0100 Subject: [PATCH] Create config.yml --- .circleci/config.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..a88aa1b --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,17 @@ +version: 2 +jobs: + test: + docker: + - image: circleci/node:10.13 + steps: + - checkout + - run: npm install + - run: npm run clean + - run: npm run test + - run: npm run clean + +workflows: + version: 2 + test: + jobs: + - test