angular-cn/scripts/ci-lite/lint.sh

16 lines
194 B
Bash
Raw Normal View History

2016-05-02 01:53:43 -04:00
#!/usr/bin/env bash
set -ex -o pipefail
if [[ ${TRAVIS} && ${CI_MODE} != "lint" ]]; then
exit 0;
fi
echo 'travis_fold:start:lint'
gulp lint
gulp check-format
echo 'travis_fold:end:lint'