From 4c9967c95d1ee89edb8e7316dd567c44e47bdd2b Mon Sep 17 00:00:00 2001 From: pierre darcas Date: Tue, 3 Nov 2020 16:23:38 +0100 Subject: [PATCH] e2e5 --- .circleci/config.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bd724a4..434adec 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,10 +6,10 @@ jobs: steps: - checkout # check out the code in the project directory - restore_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules lint: @@ -18,10 +18,10 @@ jobs: steps: - checkout # check out the code in the project directory - restore_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} - run: yarn lint && yarn format:check - save_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules test: @@ -30,10 +30,10 @@ jobs: steps: - checkout # check out the code in the project directory - restore_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} - run: yarn test:ci - save_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules test_e2e: @@ -47,7 +47,7 @@ jobs: steps: - checkout # check out the code in the project directory - restore_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} - run: command: yarn test:e2e environement: @@ -57,7 +57,7 @@ jobs: API_HOST: localhost API_PROTOCOL: http - save_cache: - key: yarn-v2-packages-{{ checksum "yarn.lock" }} + key: yarn-v-packages-{{ checksum "yarn.lock" }} paths: - ./node_modules