Trying to set up pipelines with Angular CLI and running into an issue when calling ng build
.
pipelines:
default:
- step:
script: # Modify the commands below to build your repository.
- npm --version
- npm install
- ng build
angular-cli is a dev dependency in my package.json, but ng cannot be found.
bash: ng: command not found
What step did I miss or doing wrong? Thank-you