]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - .travis.yml
Fix order of tags with the same number of occurrences
[github/shaarli/Shaarli.git] / .travis.yml
... / ...
CommitLineData
1sudo: false
2dist: trusty
3
4matrix:
5 include:
6 - language: php
7 php: 7.2
8 - language: php
9 php: 7.1
10 - language: php
11 php: 7.0
12 - language: php
13 php: 5.6
14 - language: node_js
15 node_js: 8
16 cache:
17 yarn: true
18 directories:
19 - $HOME/.cache/yarn
20
21 install:
22 - yarn install
23
24 before_script:
25 - PATH=${PATH//:\.\/node_modules\/\.bin/}
26
27 script:
28 - yarn run build # Just to be sure that the build isn't broken
29 - make eslint
30
31cache:
32 directories:
33 - $HOME/.composer/cache
34
35install:
36 - composer install --prefer-dist
37
38before_script:
39 - PATH=${PATH//:\.\/node_modules\/\.bin/}
40
41script:
42 - make clean
43 - make check_permissions
44 - make all_tests