I've been doing it this way:
pipelines:
default:
- step:
script:
- npm install -g yarn
- yarn install
I'm curious to see if i'm missing something here. Whats the difference between using curl versus npm in this case?
image: node:6.9.0 pipelines: default: - step: script: - curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 0.24.4 # install yarn - export PATH=$HOME/.yarn/bin:$PATH - yarn install --pure-lockfile - node_modules/.bin/bower install --allow-root - yarn run test-fast
I am getting these errors in bitbucket pipelines
Request failed \"401 Unauthorized\"". this is using artifactoryonline
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.