diff --git a/.travis.yml b/.travis.yml index 8da7b6ea4..4f284f6a4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ before_install: - npm install webber - npm install builder - npm install tagger +- npm install linter script: - npm run tagger - npm run linter diff --git a/.travis/push.sh b/.travis/push.sh index cfe5e2331..c0be60223 100755 --- a/.travis/push.sh +++ b/.travis/push.sh @@ -5,11 +5,6 @@ setup_git() { commit_website_files() { git checkout master - if [[ $(( $TRAVIS_BUILD_NUMBER % 5 )) == 0 ]]; then - declare -i n=($TRAVIS_BUILD_NUMBER-270)/5 - npm run linter - echo "Linting build: $n" - fi git add * git commit --message "Travis build: $TRAVIS_BUILD_NUMBER" }