From 93bdbd17ef403608584aacad0fe39d3f7e0454ca Mon Sep 17 00:00:00 2001 From: Tarskan <55380090+Tarskan@users.noreply.github.com> Date: Mon, 11 Oct 2021 09:20:01 +0200 Subject: [PATCH] install yarn --- .circleci/config.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bfa2349..3041bcf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,4 +1,10 @@ -version: 2.0 +workflows: + version: 2.1 + do-some-magic: + jobs: + - build + +version: 2.1 jobs: build: docker: @@ -8,4 +14,7 @@ jobs: password: $PSW_DOCKER # context / project UI env-var reference steps: - checkout # check out the code in the project directory - - run: echo "hello world" # run the `echo` command \ No newline at end of file + - node/with-cache: + steps: + - run: yarn install + - run: npm-v1-dependencies-{{ checksum "yarn.lock" }} \ No newline at end of file