Advertisement
Guest User

Untitled

a guest
Dec 9th, 2020
275
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. default:
  2. services:
  3. - alpine:latest
  4. before_script:
  5. - apk update
  6. - apk add npm
  7. - npm cache clean --force
  8. - npm install @angular/cli
  9. - npm install --save ngx-ui-loader
  10. - npm install angular-jwt
  11. - npm i
  12. - npm audit fix --force
  13. tags:
  14. - ntiunifacisa
  15.  
  16. build:
  17. stage: build
  18. cache:
  19. paths:
  20. - node_modules/
  21. script:
  22. - npm run build
  23. artifacts:
  24. paths:
  25. - dist/
  26. tags:
  27. - ntiunifacisa
  28.  
  29. tests:
  30. stage: test
  31. cache:
  32. policy: pull
  33. paths:
  34. - node_modules/
  35. script:
  36. -npm run test
  37. -npm run e2e
  38. tags:
  39. - ntiunifacisa
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement