ubuntu 安装node
安装node
由于项目使用node 16.x开发,因此在Jenkins上,安装node 16.x
使用curl下载NodeSource的安装脚本:
curl -fsSL https://deb.nodesource.com/setup_16.x | sudo -E bash -
安装Node.js:
sudo apt-get install -y nodejs
验证Node.js是否正确安装:
node --version
安装yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
添加yarn的仓库到你的系统:
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
更新你的包管理器:
apt update
安装yarn:
apt install -y yarn
确认安装成功并检查版本:
yarn --version