Behzad Behin
Behzad Behin

Reputation: 13

Azure devops build pipeline : install npm or angular cli

I want to know if I install something like Angular-CLI on the Azure DevOps build Pipeline, it's going to be installed on my local azure DevOps server? If the answer is no, so where will it be installed?

Upvotes: 1

Views: 3529

Answers (1)

sidharth vijayakumar
sidharth vijayakumar

Reputation: 1581

As per my understanding if you are using a self hosted agent then it should be installed in that agent. If you are using Azure's agent which is called Azure Pipelines then it should be installed in that agent.

Refere :https://learn.microsoft.com/en-us/azure/devops/pipelines/ecosystems/javascript?view=azure-devops&tabs=code

Upvotes: 3

Related Questions