From 17447c03d93d37ed909b5290548fe0900c855847 Mon Sep 17 00:00:00 2001 From: Anatole De Chauveron <54862351+Anatole-DC@users.noreply.github.com> Date: Mon, 11 Oct 2021 11:00:55 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 5ebcdc6..21cccf2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,4 +22,19 @@ jobs: command: yarn install - save_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - paths: vendor/bundle + paths: [vendor/bundle] + + lint: + docker: + - image: cimg/node:16.10.0 + auth: + username: adechauveron + password: $DOCKER_PASSWORD + steps: + - run: + name: "lint step" + command: yarn lint | yarn format:check + - run: + name: "yarn test" + command: yarn test +