Skip to content

Commit

Permalink
chore: fix git config in circleci
Browse files Browse the repository at this point in the history
  • Loading branch information
davewasmer committed Mar 7, 2018
1 parent d6c08e5 commit 49c2fcb
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
paths:
- node_modules
key: dependencies-{{ checksum "yarn.lock" }}
- run:
name: Configure git user info
command: |
git config --global user.email "[email protected]"
git config --global user.name "Denali"
- run: yarn test
- run: yarn run coverage

Expand All @@ -40,6 +45,11 @@ jobs:
paths:
- node_modules
key: dependencies-{{ checksum "yarn.lock" }}
- run:
name: Configure git user info
command: |
git config --global user.email "[email protected]"
git config --global user.name "Denali"
- run: yarn test
- run: yarn run coverage

Expand Down

0 comments on commit 49c2fcb

Please sign in to comment.