From d98bb739f095c5746a639888144b204d63273690 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Franc=CC=A7ois-Guillaume=20Ribreau?= Date: Mon, 18 May 2020 10:41:55 +0200 Subject: [PATCH] fix --- .circleci/config.yml | 11 +++++++++++ circle.yml | 10 ---------- 2 files changed, 11 insertions(+), 10 deletions(-) create mode 100644 .circleci/config.yml delete mode 100644 circle.yml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..13f21a6 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,11 @@ +version: 2.1 # using 2.1 provides access to orbs and other features +jobs: + build: + environment: + COVERALLS_SERVICE_NAME: circleci + docker: + - image: circleci/node:10.16.3 + steps: + - checkout + - run: npm run test + - run: npm run test-coverage && npm run send-coverage diff --git a/circle.yml b/circle.yml deleted file mode 100644 index 37abac2..0000000 --- a/circle.yml +++ /dev/null @@ -1,10 +0,0 @@ -machine: - node: - version: 6.3 - environment: - COVERALLS_SERVICE_NAME: circleci - -test: - override: - - npm run test - - npm run test-coverage && npm run send-coverage