Skip to content

Commit

Permalink
amend: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
simlu committed Mar 3, 2019
1 parent 54694dc commit d2d7736
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,9 @@ jobs:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run:
command: |
if [[ "$CIRCLE_BRANCH" =~ ^pull\/* ]]; then
(git add . && git diff-index --quiet HEAD --) || (git status && exit 1)
fi
- run: >-
(git add . && git diff-index --quiet HEAD --) || (git status && exit
1);
- run:
command: |
if [[ "${CIRCLE_BRANCH}" == "master" ]]; then
Expand All @@ -80,11 +78,9 @@ jobs:
- checkout
- run: yarn install --frozen-lockfile
- run: yarn test
- run:
command: |
if [[ "$CIRCLE_BRANCH" =~ ^pull\/* ]]; then
(git add . && git diff-index --quiet HEAD --) || (git status && exit 1)
fi
- run: >-
(git add . && git diff-index --quiet HEAD --) || (git status && exit
1);
release:
docker:
- image: 'circleci/node:10'
Expand Down

0 comments on commit d2d7736

Please sign in to comment.