pipeline: build: image: node:16-alpine commands: - apk add make - apk add go - apk add go-bindata - make setup-code - (cd client/ && yarn generate) - make -C server build when: branch: none step1: image: alpine:latest commands: - date - ls -l /mnt/ - date >/mnt/step1.txt - ls -l /mnt/ volumes: - /mnt:/mnt step2: image: alpine:latest commands: - date - ls -l /mnt/ - date >/mnt/step2.txt - ls -l /mnt/ volumes: - /mnt:/mnt