.drone.yml 503 B

12345678910111213141516171819202122232425262728293031
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: lang
  5. image: node
  6. commands:
  7. - npm install
  8. - cd sdk
  9. - npm install
  10. - cd ..
  11. - npm run test:sunit
  12. - name: cli
  13. image: node
  14. commands:
  15. - npm install
  16. - grunt build:cli
  17. - cd cli
  18. - npm install
  19. - npm test
  20. - name: installable-cli
  21. image: node
  22. environment:
  23. AMBER_CLI: amber
  24. commands:
  25. - cd cli
  26. - npm install
  27. - npm install -g @ambers/cli
  28. - npm test