Skip to content

Commit 183df39

Browse files
authored
Merge pull request #201 from takethefake/feature/119_branch_specific_buildprocess-greenkeeper
Create branch-specific build process Travis file for Greenkeeper
2 parents d2f93a9 + 2f46040 commit 183df39

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Diff for: .travis.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ before_install:
1111
- yarn global add greenkeeper-lockfile@2
1212

1313
install:
14-
- yarn install --silent
14+
- if [[ $TRAVIS_BRANCH == greenkeeper* ]]; then
15+
yarn install --silent;
16+
else
17+
yarn --silent --pure-lockfile;
18+
fi
1519

1620
before_script:
1721
- greenkeeper-lockfile-update

0 commit comments

Comments
 (0)