Skip to content

Commit

Permalink
Changed the definition of JOB.
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Sep 17, 2019
1 parent 19e7752 commit b771777
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Expand Up @@ -52,9 +52,13 @@ jobs:
name: Versions
command: npm version
- checkout
- restore_cache:
keys:
- v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
# - restore_cache:
# keys:
# - v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
- save_cache:
key: v2-npm-lock-{{ .Branch }}-{{ .Environment.CIRCLE_JOB }}-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Install dependencies
command: npm install
Expand All @@ -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

0 comments on commit b771777

Please sign in to comment.