diff --git a/.woodpecker/ci-test.yaml b/.woodpecker/ci-test.yaml new file mode 100644 index 0000000..731a624 --- /dev/null +++ b/.woodpecker/ci-test.yaml @@ -0,0 +1,11 @@ +when: + - event: push + branch: main + +steps: + - name: node-build + image: node:20-alpine + commands: + - echo "Running Node.js test..." + - node -e 'console.log("Hello, world! from Node.js")' + - echo "CI test success! Dejavu Moe says hello to you" \ No newline at end of file