Advertisement
Guest User

Untitled

a guest
May 20th, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. version: 2
  2.  
  3. jobs:
  4. install-npm-packages:
  5. docker:
  6. - image: node:10.15.3
  7. steps:
  8. - checkout
  9. - restore_cache:
  10. keys:
  11. - node-modules-{{ .Branch }}-{{ checksum "package-lock.json" }}
  12. - run:
  13. name: Install npm packages
  14. command: npm install
  15. - save_cache:
  16. key: node-modules-{{ .Branch }}-{{ checksum "package-lock.json" }}
  17. paths:
  18. - node_modules
  19.  
  20. workflows:
  21. version: 2
  22. main:
  23. jobs:
  24. - install-npm-packages
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement