...

/

Implementing a Build Pipeline for Frontend

Implementing a Build Pipeline for Frontend

Learn to implement a pipeline release for our frontend via Azure DevOps.

Building a pipeline for the frontend

Let's build a configuration for the frontend.

  1. In the same YAML file, add the following command to install the frontend dependencies:

Press + to interact
steps:
...
- script: npm install
workingDirectory: frontend
displayName: '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.

  1. The next step is to run ...