* fix(skill): enhance git-worktree-manager with scripts, references, and Anthropic best practices * fix(skill): enhance mcp-server-builder with scripts, references, and Anthropic best practices * fix(skill): enhance changelog-generator with scripts, references, and Anthropic best practices * fix(skill): enhance ci-cd-pipeline-builder with scripts, references, and Anthropic best practices * fix(skill): enhance prompt-engineer-toolkit with scripts, references, and Anthropic best practices * docs: update README, CHANGELOG, and plugin metadata * fix: correct marketing plugin count, expand thin references --------- Co-authored-by: Leo <leo@openclaw.ai>
40 lines
476 B
Markdown
40 lines
476 B
Markdown
# GitLab CI Templates
|
|
|
|
## Node.js Baseline
|
|
|
|
```yaml
|
|
stages:
|
|
- lint
|
|
- test
|
|
- build
|
|
|
|
node_lint:
|
|
image: node:20
|
|
stage: lint
|
|
script:
|
|
- npm ci
|
|
- npm run lint
|
|
|
|
node_test:
|
|
image: node:20
|
|
stage: test
|
|
script:
|
|
- npm ci
|
|
- npm test
|
|
```
|
|
|
|
## Python Baseline
|
|
|
|
```yaml
|
|
stages:
|
|
- test
|
|
|
|
python_test:
|
|
image: python:3.12
|
|
stage: test
|
|
script:
|
|
- python3 -m pip install -U pip
|
|
- python3 -m pip install -r requirements.txt
|
|
- python3 -m pytest
|
|
```
|