11 lines
267 B
YAML
11 lines
267 B
YAML
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" |