woodpecker test 4
Some checks failed
ci/woodpecker/push/my-first-workflow Pipeline failed

This commit is contained in:
Rodrigo Verdiani 2025-10-26 21:20:07 -03:00
parent 514488e20e
commit ee2a75c4df

View File

@ -1,16 +1,18 @@
# Run pipeline on pushes to main
when:
event: push
branch: main
steps:
- name: build
image: debian
- name: install
image: node:18-alpine
commands:
- echo "This is the build step"
- echo "binary-data-123" > executable
- chmod +x executable
- echo "🔧 Installing dependencies..."
- npm install
- name: a-test-step
image: golang:1.16
- name: test
image: node:18-alpine
commands:
- echo "Testing ..."
- ls -l
- cat executable || echo "File missing!"
- ./executable
- echo "🧪 Running tests..."
- npm test