Basic GitLab CI Pipeline
Create.gitlab-ci.yml:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GitLab CI/CD pipeline examples for KafkaCode
.gitlab-ci.yml:
stages:
- security
privacy-scan:
stage: security
image: node:18
before_script:
- npm install -g kafkacode
script:
- kafkacode scan ./src --verbose
allow_failure: false
