Bug 1408954 - Use latest yarn on Heroku/Travis (#2839)

For parity with Vagrant and to save the hassle of constantly updating.
Heroku uses the version from `package.json`.
This commit is contained in:
Ed Morley 2017-10-17 18:46:50 +02:00 коммит произвёл GitHub
Родитель 321c979e93
Коммит a75cff15aa
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -62,6 +62,9 @@ matrix:
- node_modules
addons:
firefox: latest
before_install:
# Use newer yarn than that pre-installed in the Travis image.
- curl -sSfL https://yarnpkg.com/latest.tar.gz | tar -xz --strip-components=1 -C "$HOME"
install:
# `--frozen-lockfile` will catch cases where people have forgotten to update `yarn.lock`.
# `--no-bin-links` is only necessary on Windows hosts, but we include here to ensure
@ -211,6 +214,8 @@ matrix:
- source ~/venv/bin/activate
- curl -sSfL https://github.com/mozilla/geckodriver/releases/download/v0.19.0/geckodriver-v0.19.0-linux64.tar.gz | tar -zxC $HOME/bin
- nvm install 8.7.0
# Use newer yarn than that pre-installed in the Travis image.
- curl -sSfL https://yarnpkg.com/latest.tar.gz | tar -xz --strip-components=1 -C "$HOME"
install:
- pip install --disable-pip-version-check --require-hashes -r requirements/common.txt -r requirements/dev.txt
- yarn install --frozen-lockfile --no-bin-links

Просмотреть файл

@ -7,7 +7,8 @@
},
"license": "MPL-2.0",
"engines": {
"node": "8.7.0"
"node": "8.7.0",
"yarn": "^1.2.1"
},
"dependencies": {
"ajv": "^5.2.2",