Skip to content
Snippets Groups Projects
Select Git revision
  • d413d9a0f2c277ff71ba68d3b210e3069af767d4
  • master default protected
  • 1.31
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
  • 4.32.0
  • 4.31.0
  • 4.30.1
  • 4.30.0
  • 4.29.1
  • 4.29.0
  • 4.28.0
  • 4.27.0
  • 4.26.0
  • 4.25.5
  • 4.25.4
  • 4.25.3
  • 4.25.2
  • 4.25.1
  • 4.25.0
  • 4.24.3
23 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    .gitlab-ci.yml 313 B
    image: node:latest
    
    
    cache:
      paths:
        - node_modules/
    
    stages:
      - setup
      - test
    sast:
      stage: test
    
    
    test:
      stage: test
      script:
        - apt update && apt install -y  jq
        - make test        
    
    
    include:
      - template: Security/SAST.gitlab-ci.yml
      - template: Security/Secret-Detection.gitlab-ci.yml