From 674b4a7ad1dfca4b092d7fc40987ce9c3ff6c7d2 Mon Sep 17 00:00:00 2001 From: Bouncey Date: Fri, 5 Oct 2018 16:12:24 +0100 Subject: [PATCH] feat(ci): Travis runs tests Circle builds --- .circleci/config.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cd17173686..e5aee1351b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,17 +25,17 @@ jobs: # Download and cache dependencies - restore_cache: keys: - - v1-dependencies-{{ checksum "package.json" }} + - v1-dependencies-{{ checksum "client/package.json" }} # fallback to using the latest cache if no exact match is found - v1-dependencies- - + - run: cd ./client - run: npm install - save_cache: paths: - - node_modules - key: v1-dependencies-{{ checksum "package.json" }} + - client/node_modules + key: v1-dependencies-{{ checksum "client/package.json" }} # run tests! - run: npm test - - run: cd ./client && npm run build \ No newline at end of file + - run: npm run build \ No newline at end of file