travis_script.sh 212 B

123456789101112
  1. #!/bin/bash
  2. set -e
  3. export DISPLAY=:99.0
  4. sh -e /etc/init.d/xvfb start || true
  5. npm run clean
  6. npm run build
  7. npm test
  8. npm run test:coverage
  9. export PATH="$HOME/miniconda/bin:$PATH"
  10. npm run build:example
  11. npm run docs