24 lines
404 B
YAML
24 lines
404 B
YAML
language: node_js
|
|
node_js:
|
|
- 14
|
|
|
|
# Use containers.
|
|
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
|
|
sudo: false
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- qemu-utils
|
|
- blktap-utils
|
|
- vmdk-stream-converter
|
|
|
|
before_install:
|
|
- curl -o- -L https://yarnpkg.com/install.sh | bash
|
|
- export PATH="$HOME/.yarn/bin:$PATH"
|
|
|
|
cache:
|
|
yarn: true
|
|
|
|
script:
|
|
- yarn run travis-tests
|