Skip to content

Commit ed50ee0

Browse files
authored
Merge pull request #43 from TeamSupercell/FixTravisBuildForLatestDependencies
Fix Travis build testing latest dependencies
2 parents 6201788 + ec4619f commit ed50ee0

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.travis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,12 @@ branches:
1010
jobs:
1111
include:
1212
- install: npm ci
13-
- install: npm install --no-shrinkwrap
13+
env: USING_PACKAGE_LOCK=true
14+
cache: npm
15+
- install: npm install
16+
before_install: rm package-lock.json
17+
env: USING_PACKAGE_LOCK=false
18+
cache: false
1419

1520
before_script:
16-
- npm ls css-loader
17-
- npm ls typescript
21+
- npm ls --depth=0

0 commit comments

Comments
 (0)