在 travis 企业中使用纱线

Using yarn in travis enterprise

Travis supports yarn 但它似乎在他们的企业解决方案中不起作用,该解决方案似乎是旧版本。

问题是:我如何在没有 sudo 的情况下 install yarn on Travis enterprise

我假设即使我使用

安装 Yarn
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list

Travis 不会自动使用 yarn 而不是他们博客中提到的 npm。或者?

您可以按照https://yarnpkg.com/en/docs/install#alternatives-tab

中给出的说明进行操作

或者,看看我们是怎么做的:https://github.com/travis-ci/travis-build/blob/02fb3b35c35cb7d69dd28923404c4cc02dc57ddd/lib/travis/build/script/node_js.rb#L211-L219

此外,如果您有关于 Travis Enterprise 的支持问题,可以发送电子邮件至 enterprise@travis-ci.com。

谢谢!