diff --git a/.travis.yml b/.travis.yml index 6bdf028d3..e1f264647 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,6 @@ cache: - node_modules install: npm install script: - - npm run lint - bash ./deploy/deploy.sh env: global: diff --git a/deploy/deploy.sh b/deploy/deploy.sh index 97b3539bc..0724f03e5 100644 --- a/deploy/deploy.sh +++ b/deploy/deploy.sh @@ -4,12 +4,14 @@ set -e function tests { + npm run lint npm run test-docs VERSIONED=false npm run web-dist exit 0 } function build { + npm run lint npm run docs VERSIONED=false npm run web-dist }