ci.sh 198 B

123456789101112
  1. set -e
  2. if [ -z "$CI_PULL_REQUEST" ]
  3. then
  4. npm run lint
  5. npm run cover
  6. cat ./coverage/lcov.info | ./node_modules/.bin/codecov
  7. npm run build
  8. npm run e2e
  9. npm run sauce-all
  10. else
  11. npm test
  12. fi