May 2019
Beginner to intermediate
456 pages
10h 37m
English
Creating the build pipeline is similar to what we did previously in Deploying the database to Azure SQL using the release pipeline recipe. This is a typescript project, and we have a few scripts in our scripts section in our package.json. The following is the YAML file for our build pipeline. As you can see, this is just made up of three tasks:
These 3 steps are under steps section in the below YAML content.
resources:- repo: selfqueue: name: Default demands: npmtrigger: nonesteps:- task: Npm@1 displayName: 'npm install' inputs: workingDir: ...
Read now
Unlock full access