From 94da0ee4fae57c56ff1ee707b4de453574b0aad4 Mon Sep 17 00:00:00 2001 From: Iuri Matias Date: Sun, 2 Dec 2018 10:59:01 -0500 Subject: [PATCH] attempt to fix circle ci --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3105fc8cc7..58c75f6152 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,7 +8,7 @@ jobs: docker: # specify the version you desire here - image: circleci/node:9.11.2 - + # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images # documented at https://circleci.com/docs/2.0/circleci-images/ @@ -26,10 +26,10 @@ jobs: - checkout - restore_cache: keys: - - dep-bundle-23-{{ checksum "package.json" }} + - dep-bundle-24-{{ checksum "package.json" }} - run: npm install - save_cache: - key: dep-bundle-23-{{ checksum "package.json" }} + key: dep-bundle-24-{{ checksum "package.json" }} paths: - ~/repo/node_modules - run: npm run lint && npm run test && npm run make-mock-compiler && npm run build