Advertisement
minafaw3

circleCI

Jun 8th, 2020
311
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. # Javascript Node CircleCI 2.0 configuration file
  2. #
  3. # Check https://circleci.com/docs/2.0/language-javascript/ for more details
  4. #
  5. version: 2
  6. jobs:
  7. build:
  8. docker:
  9. - image: circleci/node:11.10.1
  10. working_directory: ~/repo/cats-client
  11.  
  12. steps:
  13. - checkout
  14. path: ~/cats-client
  15.  
  16. # Download and cache dependencies
  17. - restore_cache:
  18. keys:
  19. - v1-dependencies-{{ checksum "package.json" }}
  20. # fallback to using the latest cache if no exact match is found
  21. - v1-dependencies-
  22.  
  23. - run: npm install
  24.  
  25. - save_cache:
  26. paths:
  27. - node_modules
  28. key: v1-dependencies-{{ checksum "package.json" }}
  29.  
  30. # run tests!
  31. - run: npm test
  32.  
  33.  
  34.  
  35.  
  36. version: 2.1
  37. executors:
  38. node:
  39. docker:
  40. - image: circleci/node:10
  41. workflows:
  42. version: 2
  43. build_and_test:
  44. jobs:
  45. - build
  46. - test
  47. jobs:
  48. build:
  49. working_directory: ~/repo/cats-client
  50. executor: node
  51. steps:
  52. - checkout
  53. path: ~/cats-client
  54. - restore_cache:
  55. keys:
  56. - v1-dependencies-{{ checksum "package.json" }}
  57. # fallback to using the latest cache if no exact match is found
  58. - v1-dependencies-
  59. - run: npm install
  60. - save_cache:
  61. paths:
  62. - node_modules
  63. key: v1-dependencies-{{ checksum "package.json" }}
  64. - run: npm run build
  65. test:
  66. executor: node
  67. steps:
  68. - checkout
  69. - run: npm install
  70. - run: npm run test
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement