From f925564f89e0aac77e980448cbfae0c3c5dc3c1b Mon Sep 17 00:00:00 2001 From: wtho Date: Tue, 22 Oct 2019 10:32:00 +0200 Subject: [PATCH] ci(greenkeeper): greenkeeper update lockfile (#327) --- .circleci/config.yml | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 85ad1852ff..e83a8055fe 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -9,6 +9,8 @@ jobs: executor: node-10 steps: - checkout + - run: 'sudo yarn global add greenkeeper-lockfile@2' + - run: 'greenkeeper-lockfile-update' - restore_cache: keys: # if lock file changes, we still use increasingly general patterns to restore cache @@ -43,21 +45,15 @@ jobs: steps: - attach_workspace: at: . - # disabling cache here as it created issues with the preset in the root + # skipping cache here as it created issues with the preset in the root # not being used, as older version in cache was available - #- restore_cache: - # keys: - # - yarn-cache-example-{{ .Branch }}-{{ checksum "yarn.lock" }} - # - yarn-cache-example-{{ .Branch }}- + - run: 'sudo yarn global add greenkeeper-lockfile@2' + - run: 'greenkeeper-lockfile-update' - run: name: Install Example Dependencies command: | cd example yarn install --frozen-lockfile - #- save_cache: - # key: yarn-cache-example-{{ .Branch }}-{{ checksum "yarn.lock" }} - # paths: - # - ./example/node_modules - run: name: Test Example command: |