From 0656818e3e2c8797379b761b861df29336032cd8 Mon Sep 17 00:00:00 2001 From: Neel Coffin Date: Mon, 2 Nov 2020 09:49:19 +0100 Subject: [PATCH] yml: fix ident --- .circleci/config.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f56aac2..5f3ceb9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,11 +8,10 @@ jobs: - restore_cache: name: restore yarn package cache - keys: - - npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} - run: yarn global add node-gyp && yarn install - save_cache: name: sa ve yarn package cache - keys: npm-v1-dependencies-{{ checksum "yarn.lock" }} + key: npm-v1-dependencies-{{ checksum "yarn.lock" }} paths: - ~/.cache/yarn \ No newline at end of file