aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-03-28 19:08:06 +0200
committerGitHub <noreply@github.com>2018-03-28 19:08:06 +0200
commitc81f1afc0a3a16daf98741a63c7524b27835da99 (patch)
treedfe81b73f028dfc27eda916b14bf4bc17966b082 /.travis.yml
parent9b2bd66fb60ffd5a833480bf329062c7d57bc8c4 (diff)
parentd7eb06bd7c4d01bbdf67f4f100af7a3e300098d3 (diff)
downloadShaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.tar.gz
Shaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.tar.zst
Shaarli-c81f1afc0a3a16daf98741a63c7524b27835da99.zip
Merge pull request #1072 from ArthurHoaro/feature/modern-front-end
Manage frontend dependencies with npm/yarn and webpack
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml6
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index 758aa9f4..1b2bf97b 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -2,20 +2,22 @@ sudo: false
2dist: trusty 2dist: trusty
3language: php 3language: php
4cache: 4cache:
5 yarn: true
5 directories: 6 directories:
6 - $HOME/.composer/cache 7 - $HOME/.composer/cache
8 - $HOME/.cache/yarn
7php: 9php:
8 - 7.2 10 - 7.2
9 - 7.1 11 - 7.1
10 - 7.0 12 - 7.0
11 - 5.6 13 - 5.6
12install: 14install:
13 - composer self-update 15 - yarn install
14 - composer install --prefer-dist 16 - composer install --prefer-dist
15 - locale -a
16before_script: 17before_script:
17 - PATH=${PATH//:\.\/node_modules\/\.bin/} 18 - PATH=${PATH//:\.\/node_modules\/\.bin/}
18script: 19script:
19 - make clean 20 - make clean
20 - make check_permissions 21 - make check_permissions
22 - make eslint
21 - make all_tests 23 - make all_tests