My personal website https://leviolson.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
565 B

6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. # This file is a template, and might need editing before it works on your project.
  2. # Official framework image. Look for the different tagged releases at:
  3. # https://hub.docker.com/r/library/node/tags/
  4. image: node:latest
  5. cache:
  6. paths:
  7. - node_modules/
  8. stages:
  9. - test
  10. - deploy
  11. test_coverage:
  12. stage: test
  13. script:
  14. - npm install
  15. - npm install --global mocha nyc
  16. - npm run coverage
  17. deploy_prod:
  18. stage: deploy
  19. script:
  20. - echo "Deploying to Production"
  21. environment:
  22. name: production
  23. url: https://leviolson.com
  24. only:
  25. - master