From 73e970ab811ceee454f6c6a15c60dcfb5f3d41f0 Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 21 Oct 2019 12:18:56 +0200 Subject: [PATCH] test(ci): fix install --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f8b2b31..f28c49c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -24,12 +24,13 @@ jobs: # fallback to using the latest cache if no exact match is found - v3-dependencies- - - run: yarn install && cd tests/demo && yarn install + - run: yarn install && cd tests/demo && yarn install && cd ../ssr && yarn install - save_cache: paths: - node_modules - tests/demo/node_modules + - tests/ssr/node_modules - ~/.cache key: v3-dependencies-{{ checksum "yarn.lock" }}