Skip to content
Snippets Groups Projects
Select Git revision
1 result Searching

.gitignore

Blame
  • .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