2022-01-09 11:08:42 +00:00
|
|
|
kind: pipeline
|
|
|
|
type: docker
|
|
|
|
name: default
|
|
|
|
|
|
|
|
steps:
|
2022-01-09 11:16:43 +00:00
|
|
|
- name: say-hello
|
|
|
|
image: busybox
|
|
|
|
commands:
|
|
|
|
- echo hello-world
|
|
|
|
|
2022-01-09 11:08:42 +00:00
|
|
|
- name: backend
|
|
|
|
image: composer
|
|
|
|
commands:
|
|
|
|
- cd backend && composer install
|
|
|
|
|
|
|
|
- name: frontend
|
|
|
|
image: node
|
|
|
|
commands:
|
|
|
|
- cd frontend && npm install
|