Skip to content

Commit

Permalink
Validate and fix circleci config
Browse files Browse the repository at this point in the history
  • Loading branch information
javve committed Dec 16, 2018
1 parent b19c1a2 commit e6af108
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ jobs:
build:
docker:
- image: circleci/node:6.15
steps:
- checkout
- restore_cache:
keys: v1-dependencies-{{ checksum "package.json" }}
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run:
name: test
command: npm test
- run:
name: code-coverage
command: '<(curl -s https://codecov.io/bash)'
steps:
- checkout
- restore_cache:
keys: v1-dependencies-{{ checksum "package.json" }}
- run: npm install
- save_cache:
paths:
- node_modules
key: v1-dependencies-{{ checksum "package.json" }}
- run:
name: test
command: npm test
- run:
name: code-coverage
command: '<(curl -s https://codecov.io/bash)'

0 comments on commit e6af108

Please sign in to comment.