woodpecker/.woodpecker/my-first-workflow.yaml
Rodrigo Verdiani 4d3d0e2907
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed
woodpecker test 5
2025-10-26 21:23:58 -03:00

19 lines
313 B
YAML

# Run pipeline on pushes to main
when:
event: push
branch: main
steps:
- name: install
image: node:18-alpine
commands:
- echo "🔧 Installing dependencies..."
- npm install
- name: test
image: node:18-alpine
commands:
- echo "🧪 Running tests...."
- npm test