pool: vmImage: Hosted demands: npm steps: - task: Npm@1 displayName: 'npm custom' inputs: command: custom verbose: false customCommand: 'install -g openapi2apigee' - task: Npm@1 displayName: 'npm install apigeetool' inputs: command: custom verbose: false customCommand: 'install -g apigeetool' - script: | echo Write your commands here mkdir petstore-code openapi2apigee generateApi petStore -s http://petstore.swagger.io/v2/swagger.json -d ./petstore-code cd petstore-code apigeetool deployproxy -u $(APIGEE_USER) -p $(APIGEE_PASSWORD) -o $(ORG) -e $(ENV) -n petstore -L https://api.enterprise.apigee.com echo Use the environment variables input below to pass secret variables to this script displayName: 'Command Line Script'