From 42b2b1eedd8aaf4194d05ddb3d1834d58fea2d2a Mon Sep 17 00:00:00 2001 From: KheliaNibaruta <73180785+KheliaNibaruta@users.noreply.github.com> Date: Thu, 5 Nov 2020 13:39:34 +0100 Subject: [PATCH] test hello world --- .circleci/config.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 935cd00..a79134d 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,15 +6,15 @@ workflow: jobs: build: docker: - - image: cimg/node:12.18 + - image: cimg/node:14.10.1 steps: - checkout - - restore_cache: - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} - - run: yarn global add node-gyp && yarn install - - save_cache: - paths: - - ~./cache/yarn - key: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} +# - restore_cache: +# key: +# - npm-v1-dependencies-{{ checksum "yarn.lock" }} + - run: echo "hello world" +# - save_cache: +# paths: +# - ~./cache/yarn +# key: +# - npm-v1-dependencies-{{ checksum "yarn.lock" }}