kind: pipeline name: default steps: - name: lang image: node commands: - npm install - cd sdk - npm install - cd .. - npm run test:sunit - name: cli image: node commands: - npm install - grunt build:cli - cd cli - npm install - npm test - name: installable-cli image: node environment: AMBER_CLI: amber commands: - cd cli - npm install - npm install -g @ambers/cli - npm test