]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - .travis.yml
Use Travis stages to run JS tests separately
[github/shaarli/Shaarli.git] / .travis.yml
1 sudo: false
2 dist: trusty
3
4 matrix:
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
31 cache:
32 directories:
33 - $HOME/.composer/cache
34
35 install:
36 - composer install --prefer-dist
37
38 before_script:
39 - PATH=${PATH//:\.\/node_modules\/\.bin/}
40
41 script:
42 - make clean
43 - make check_permissions
44 - make all_tests