Combining multiple repositories with Azure DevOps pipeline (IV)
Build the front-end project
Go back to the YAML file editing interface and find this step.
steps:
– checkout: Angular
displayName: ‘checkout Angular’
Add the following 2 tasks below the step.
– task: Npm@1
displayName: ‘npm install’
inputs:
c… Continue reading Combining multiple repositories with Azure DevOps pipeline (IV)