vue/build/ci.sh
2015-11-18 15:01:05 -05:00

13 lines
198 B
Bash

set -e
if [ -z "$CI_PULL_REQUEST" ]
then
npm run lint
npm run cover
cat ./coverage/lcov.info | ./node_modules/.bin/codecov
npm run build
npm run e2e
npm run sauce-all
else
npm test
fi