Guest User

Untitled

a guest
Mar 19th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. version: 2
  2. jobs:
  3. build:
  4. docker:
  5. - image: 'circleci/node:9.7.1'
  6. branches:
  7. only:
  8. - master
  9. steps:
  10. - checkout
  11. - restore_cache:
  12. key: 'dependency-cache-{{ checksum "package.json" }}'
  13. - run:
  14. name: install
  15. command: npm install
  16. - save_cache:
  17. key: 'dependency-cache-{{ checksum "./package.json" }}'
  18. paths:
  19. - ./node_modules
  20. - deploy:
  21. name: Deploy
  22. command: npm run deploy
  23. - deploy:
  24. name: Alias
  25. command: npm run alias
Add Comment
Please, Sign In to add comment