aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2018-02-24 18:37:57 +0100
committerArthurHoaro <arthur@hoa.ro>2018-03-28 19:04:40 +0200
commit47978e8772d9ac355c76f6ccd6fc59394bc7c301 (patch)
tree0f53953801fc2f36b359663777685dd1cb946c96 /.travis.yml
parent7e9bd977eec3c996119626a4bb2828fc08979db8 (diff)
downloadShaarli-47978e8772d9ac355c76f6ccd6fc59394bc7c301.tar.gz
Shaarli-47978e8772d9ac355c76f6ccd6fc59394bc7c301.tar.zst
Shaarli-47978e8772d9ac355c76f6ccd6fc59394bc7c301.zip
Webpack / Configure webpack, ESLint, Travis, Makefile, npm/yarn and git
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