You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash
|
|
set -e # halt script on error
|
|
# If deploying, don't balk on lint errors
|
|
if [ $TRAVIS_PULL_REQUEST = "false" ] && [ $TRAVIS_BRANCH = ${DEPLOY_BRANCH} ]; then
|
|
npm run lint || true
|
|
else
|
|
npm run lint
|
|
fi
|