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