Skip to content
Snippets Groups Projects
Select Git revision
  • 4719e952431332f4a095288cbb5d7f56232c6672
  • master default protected
  • 1.31
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 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
23 results

.gitlab-ci.yml

Blame
  • .gitlab-ci.yml 255 B
    image: node:latest
    
    
    cache:
      paths:
        - node_modules/
    
    stages:
      - setup
      - test
    
    test:
      stage: test
      script:
        - apt update && apt install -y jq  gawk
        - make test        
    
    
    include:
      - template: Security/Secret-Detection.gitlab-ci.yml