Skip to content

Commit 49c2fcb

Browse files
committed
chore: fix git config in circleci
1 parent d6c08e5 commit 49c2fcb

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

.circleci/config.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,11 @@ jobs:
2424
paths:
2525
- node_modules
2626
key: dependencies-{{ checksum "yarn.lock" }}
27+
- run:
28+
name: Configure git user info
29+
command: |
30+
git config --global user.email "test@denalijs.org"
31+
git config --global user.name "Denali"
2732
- run: yarn test
2833
- run: yarn run coverage
2934

@@ -40,6 +45,11 @@ jobs:
4045
paths:
4146
- node_modules
4247
key: dependencies-{{ checksum "yarn.lock" }}
48+
- run:
49+
name: Configure git user info
50+
command: |
51+
git config --global user.email "test@denalijs.org"
52+
git config --global user.name "Denali"
4353
- run: yarn test
4454
- run: yarn run coverage
4555

0 commit comments

Comments
 (0)