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:
+ grunt bash:
grunt: command not found
Thanks
---
Chiendv
I had the same error with grunt. You might need to add these 2 lines before 'npm install':
See if that works.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Correct answer!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
From setup to deployment—this learning path shows you how to build your first app using Forge. Learn the essentials, streamline workflows, and bring custom solutions to life across Jira, Confluence, and more.
Start Learning
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.