aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
blob: 1b2bf97b8a785d5f5942571d9362d310517f0af1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
sudo: false
dist: trusty
language: php
cache:
  yarn: true
  directories:
    - $HOME/.composer/cache
    - $HOME/.cache/yarn
php:
  - 7.2
  - 7.1
  - 7.0
  - 5.6
install:
  - yarn install
  - composer install --prefer-dist
before_script:
  - PATH=${PATH//:\.\/node_modules\/\.bin/}
script:
  - make clean
  - make check_permissions
  - make eslint
  - make all_tests