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

LICENSE

Blame
  • This project is licensed under the MIT License. Learn more
    .gitlab-ci.yml 264 B
    image: node:latest
    
    
    cache:
      paths:
        - node_modules/
    
    stages:
      - setup
      - test
    
    test:
      stage: test
      script:
        - apt update && apt install -y jq  gawk plantuml
        - make test        
    
    
    include:
      - template: Security/Secret-Detection.gitlab-ci.yml