-
Type:
Bug
-
Resolution: Invalid
-
Priority:
Medium
-
Component/s: Pipelines - Run Failures
Hi there, currently running the follow:
#!yml
image: node:9.0.0
pipelines:
branches:
feature/*:
- step:
caches:
- node
script:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.6
- export PATH=$HOME/.yarn/bin:$PATH
- set NODE_ENV=production
- yarn
- yarn global add gulp
- npm link gulp
- ls -a
- yarn build
When it runs build it runs a gulp task that hashes images and then runs a webpack build. However it would seem that these dependencies listed in my package.json are not in node_modules or working at all? Is there a reason or something I am missing?
Attached an image of the build errors. I don't understand why I would have to install each dependency manually?