From f6d406a2a4060ca8ee47c9a4ac0cf3e09b00f92a Mon Sep 17 00:00:00 2001 From: Tarskan <55380090+Tarskan@users.noreply.github.com> Date: Mon, 11 Oct 2021 10:00:18 +0200 Subject: [PATCH] Update config.yml --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index ac3da77..8799c84 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,9 +24,21 @@ jobs: - restore_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} job2: + docker: + - image: cimg/node:14.15.0 # the primary container, where your job's commands are run + auth: + username: $AUTH_DOCKER + password: $PSW_DOCKER # context / project UI env-var reference steps: + - checkout - run: yarn lint - run: yarn format:check job3: + docker: + - image: cimg/node:14.15.0 # the primary container, where your job's commands are run + auth: + username: $AUTH_DOCKER + password: $PSW_DOCKER # context / project UI env-var reference steps: + - checkout - run: yarn test:ci \ No newline at end of file