1
0

.gitlab-ci.yml 247 B

123456789101112131415
  1. image: node:latest
  2. cache:
  3. paths:
  4. - node_modules/
  5. test:
  6. script:
  7. - npm install
  8. - npm run test:unit
  9. include:
  10. - template: Dependency-Scanning.gitlab-ci.yml
  11. - template: License-Scanning.gitlab-ci.yml
  12. - template: SAST.gitlab-ci.yml