From a09663b21ab2c6bd0768d35fe854dbe719853849 Mon Sep 17 00:00:00 2001 From: HenriBoulnois <72384047+HenriBoulnois@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:01:06 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 89f9a2f..1773c0f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2.1 jobs: - build: + yarninstall: machine: image: ubuntu-2004:202010-01 steps: @@ -13,4 +13,15 @@ jobs: - save_cache: paths: - "node_module" - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + yarnlint: + machine: + image: ubuntu-2004:202010-01 + steps: + - run: yarn lint + +workflows: + build: + jobs: + - yarninstall + - yarnlint \ No newline at end of file