xmpp.chapril.org-conversejs/.travis.yml
Maxime “pep” Buquet 54652f7461 Remove sudo: false in .travis.yml
https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration

`sudo: false` is getting deprecated and support for it will soon be
removed entirely. They seem to be moving to using VMs entirely for their
service.

Converse doesn't seem to be using Travis' features extensively so I
don't think anything would break, but this clause will become useless in
less than a month, (quite a tight timeline).

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
2018-11-20 18:16:06 +01:00

17 lines
292 B
YAML

dist: trusty
language: node_js
cache:
directories:
- node_modules
addons:
chrome: stable
node_js:
- "9"
before_install:
- npm install -g lerna
- rm -rf ./node_modules
- export LERNA=$(which lerna)
install: make stamp-npm
before_script: make serve_bg
script: make check