From 0e05801cf1ff76896f5c3c54f5b58984483824ef Mon Sep 17 00:00:00 2001 From: Anatole-DC Date: Mon, 11 Oct 2021 10:41:08 +0200 Subject: [PATCH] feat: correct config --- .circleci/config.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 1b9ac0e..e43f82f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,20 +3,23 @@ jobs: build: docker: - image: cimg/node - auth: - username: Anatole-DC - password: $DOCKER_PASSWORD + auth: + username: Anatole-DC + password: $DOCKER_PASSWORD steps: - checkout - - run: echo "Hello World" + - run: + name: "Hello World" + command: echo "Hello World" - restore_cache: keys: - npm-v1-dependencies-{{ checksum "yarn.lock" }} - npm-v1-dependencies- - - run: yarn install - - run: bundle install --path vendor/bundle + - run: + name: "yarn install" + command: yarn install - save_cache: key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: vendor/bundle