circle.yml 393 B

123456789101112131415161718192021
  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. - apm rebuild
  13. - npm run build
  14. test:
  15. override:
  16. - npm test
  17. machine:
  18. node:
  19. version: 8