Skip to content

Commit

Permalink
ci: enable nvm
Browse files Browse the repository at this point in the history
  • Loading branch information
wzieba committed Feb 2, 2024
1 parent c4e1198 commit 450fb79
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ common-params:
steps:
- label: "Publish to Maven Local (to verify build)"
command: |
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
source /root/.bashrc
nvm install && nvm use
npm install
Expand All @@ -23,7 +25,8 @@ steps:
- *docker-container
if: build.branch == "trunk"
command: |
source /root/.bashrc
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install && nvm use
npm install
Expand Down

0 comments on commit 450fb79

Please sign in to comment.