mirror of
https://github.com/filegator/filegator.git
synced 2025-01-18 05:08:54 +01:00
40 lines
671 B
YAML
40 lines
671 B
YAML
language: php
|
|
|
|
php:
|
|
- 7.1.3
|
|
- 7.2
|
|
- 7.3
|
|
|
|
env:
|
|
- NODE_RELEASE=10.x
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
# Cypress dependency
|
|
- libgconf-2-4
|
|
|
|
cache:
|
|
directories:
|
|
# cache Cypress binary
|
|
- ~/.cache
|
|
|
|
before_script:
|
|
- composer self-update
|
|
- sudo rm -rf ~/.nvm - curl -sL "https://deb.nodesource.com/setup_${NODE_RELEASE}" | sudo -E bash -
|
|
- sudo apt-get install -y nodejs
|
|
- cp configuration_sample.php configuration.php
|
|
|
|
install:
|
|
- composer install --no-interaction
|
|
- npm install
|
|
|
|
script:
|
|
- vendor/bin/phpunit --coverage-clover=coverage.xml
|
|
- npm run lint
|
|
- npm run test:e2e
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|