mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
30 lines
442 B
YAML
30 lines
442 B
YAML
sudo: required
|
|
dist: trusty
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- google-chrome
|
|
packages:
|
|
- google-chrome-stable
|
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
- "8"
|
|
- "9"
|
|
|
|
cache:
|
|
yarn: true
|
|
|
|
bundler_args: --retry 5
|
|
|
|
install:
|
|
- travis_retry yarn install
|
|
|
|
script:
|
|
# Use Chromium instead of Chrome.
|
|
- export CHROME_BIN=chromium-browser
|
|
- yarn run build
|
|
- yarn run ci
|
|
- cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
|