diff --git a/.travis.yml b/.travis.yml index 94fab7fddd78..5852308601b7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -32,6 +32,7 @@ before_script: - yarn build-all script: - yarn bundlesize + - yarn test-viewer - yarn lint - yarn unit:silentcoverage - yarn type-check diff --git a/lighthouse-viewer/gulpfile.js b/lighthouse-viewer/gulpfile.js index 5f39bf79d1b8..d4e8194f0950 100644 --- a/lighthouse-viewer/gulpfile.js +++ b/lighthouse-viewer/gulpfile.js @@ -186,7 +186,7 @@ gulp.task('deploy', cb => { gulp.task('build', cb => { runSequence( - 'lint', 'compile-js', + 'compile-js', ['html', 'pwa', 'images', 'concat-css', 'polyfills'], cb); });