From f2b5d51f66222f6cec0ef4447adf9aa209f6c975 Mon Sep 17 00:00:00 2001 From: sipe-daniel Date: Thu, 5 Nov 2020 17:35:01 +0100 Subject: [PATCH] fix(config.yml): ERROR IN CONFIG FILE* schema violations found --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 43ccb56..3fb9d08 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,11 +17,11 @@ jobs: - checkout - restore_cache: name: Restore Yarn Package Cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: name: Save Yarn Package Cache - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} paths: - ./node_modules lint: @@ -30,7 +30,7 @@ jobs: steps: - checkout - restore_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} - run : yarn lint && yarn format:check test: docker: @@ -38,5 +38,5 @@ jobs: steps: - checkout - restore_cache: - key: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: yarn-packages-v2{{ checksum "yarn.lock" }} - run : yarn test:ci \ No newline at end of file