a61c5d382e
Without it Jenkins builds are broken. Closes #16365
19 lines
395 B
Bash
Executable File
19 lines
395 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Install nvm for this shell
|
|
source ~/.nvm/nvm.sh
|
|
|
|
# Use version of node.js found in .nvmrc
|
|
nvm install
|
|
|
|
# clean out and install yarn
|
|
rm -rf ~/.yarn
|
|
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.3.2
|
|
export PATH="$HOME/.yarn/bin:$PATH"
|
|
|
|
# Ensure that we have the local dependencies installed
|
|
yarn install
|
|
|
|
echo testing grunt version
|
|
yarn run grunt -- --version
|