Skip to content

Commit

Permalink
fix(travis): improve Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
felixfbecker committed Sep 5, 2018
1 parent aff1de6 commit bafadc7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/travis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ export async function initTravis({
env: {
global: ['FORCE_COLOR=1'],
},
install: ['npm ci'],
jobs: {
include: [
{
Expand Down Expand Up @@ -105,7 +106,7 @@ export async function initTravis({
},
],
branches: {
only: ['master'],
only: ['master', /^renovate\//.toString()],
},
}
await writeFile('.travis.yml', yaml.dump(travisYaml))
Expand Down

0 comments on commit bafadc7

Please sign in to comment.