From 2ed8954f802cc69c94db459f16164aab5df9770c Mon Sep 17 00:00:00 2001 From: Tarskan <55380090+Tarskan@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:57:51 +0200 Subject: [PATCH] job +++ --- .circleci/config.yml | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6ed43fb..ac3da77 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,6 +3,12 @@ workflows: do-some-magic: jobs: - build + - job2: + requires: + - build + - job3: + requires: + - build version: 2.1 jobs: @@ -16,4 +22,11 @@ jobs: - checkout # check out the code in the project directory - run: yarn install - restore_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + job2: + steps: + - run: yarn lint + - run: yarn format:check + job3: + steps: + - run: yarn test:ci \ No newline at end of file