From 2e1350e6c964600d790bfdbfaadbed1d90f3b788 Mon Sep 17 00:00:00 2001 From: ota Date: Tue, 17 Sep 2019 20:48:42 +0900 Subject: [PATCH] Changed the definition of JOB. --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a96c74f5a..c60601bce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -58,6 +58,10 @@ jobs: - run: name: Install dependencies command: npm install + - save_cache: + key: v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }} + paths: + - node_modules - run: name: Install eslint 5 command: | @@ -68,7 +72,3 @@ jobs: - run: name: Test command: npm test - - save_cache: - key: v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }} - paths: - - node_modules