travis_script.sh 219 B

1234567891011121314
  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 build:examples
  9. npm run test
  10. npm run test:coverage
  11. npm run docs