From 341d875311c5ab5936fb4c0212008333e4a18937 Mon Sep 17 00:00:00 2001 From: Adrien-Ba <45963338+Adrien-Ba@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:17:08 +0200 Subject: [PATCH] Updated config.yml --- .circleci/config.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 93f1116..d1c2b21 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,7 +1,7 @@ version: 2.1 jobs: - yarninstall: + build: docker: - image: cimg/node:lts auth: @@ -48,6 +48,11 @@ jobs: workflows: build: jobs: - - yarninstall - - yarnlint - - yarntestci \ No newline at end of file + - build + - yarnlint: + requireds: + - build + - yarntestci: + requires: + - build + - yarnlint \ No newline at end of file