Skip to content

Commit 28a82d2

Browse files
build(travis): use npm ci for non-greenkeeper branches
1 parent a5faa79 commit 28a82d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ cache:
1616
# of updating the package lock.
1717
install:
1818
# decide if running on greenkeeper branch or not
19-
#- case $TRAVIS_BRANCH in greenkeeper*) npm i;; *) npm ci;; esac;
19+
- case $TRAVIS_BRANCH in greenkeeper*) npm i;; *) npm ci;; esac;
2020
# somehow the above command fails when we have a cache available on travis - needs some more investigation, stick with
2121
# npm i for now
22-
- npm i
22+
#- npm i
2323

2424
notifications:
2525
email: false

0 commit comments

Comments
 (0)