circle.yml 379 B

1234567891011121314151617181920
  1. dependencies:
  2. override:
  3. - curl -L https://atom.io/download/deb -o atom-amd64.deb
  4. - sudo dpkg --install atom-amd64.deb || true
  5. - sudo apt-get update
  6. - sudo apt-get -f install
  7. - node --version
  8. - npm --version
  9. - atom --version
  10. - npm prune
  11. - npm install
  12. - npm run build
  13. test:
  14. override:
  15. - npm test
  16. machine:
  17. node:
  18. version: 6.3.0