kind: pipeline type: docker name: default steps: - name: build_client image: node commands: - cd Client - npm install - node node_modules/@angular/cli/bin/ng build --prod --configuration=production - name: build_server image: node commands: - cd Server - npm install