travis_script.sh 242 B

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