Hi,
I trying Bitbucket-Pipelines but I got a problem with grunt.
Here is my YML test file,
image: node:5.11.0
pipelines:
default:
- step:
script:
- echo "This script runs on all branches that don't have any specific pipeline assigned in 'branches'."
branches:
master:
- step:
script:
- npm --version
- npm install
- grunt
When the Pipelines run I failed in Grunt command with:<span>+ grunt bash: <br>grunt: command not found</span>
Thanks
---
Chiendv