...
/Implementing a Build Pipeline for Frontend
Implementing a Build Pipeline for Frontend
Learn to implement a pipeline release for our frontend via Azure DevOps.
We'll cover the following...
Building a pipeline for the frontend
Let's build a configuration for the frontend.
In the same YAML file, add the following command to install the frontend dependencies:
Press + to interact
steps:...- script: npm installworkingDirectory: frontenddisplayName: 'frontend install dependencies'
Here, we use the npm install
command to install the dependencies. Notice that we have set the working directory to “frontend,” which is where our frontend code is located.
The next step is to run ...