Files
w4rpservices/vendor/khill/lavacharts/.gitlab-ci.yml
2019-07-02 01:51:56 +00:00

25 lines
617 B
YAML

# Select image from https://hub.docker.com/_/php/
image: php:5.6
# Select what we should cache
cache:
paths:
- vendor/
before_script:
- apt-get update -yqq
- apt-get install git unzip nodejs -yqq
- curl -sS https://getcomposer.org/installer | php
#- echo 'date.timezone = "America/Los_Angeles"' >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini
- mkdir -p build/logs
- php composer.phar install --no-progress --no-interaction --prefer-dist
- npm install --no-progress --production
after_script:
- php ./vendor/bin/coveralls
test:
script:
- php composer.phar run test
- npm run test