-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
55 lines (50 loc) · 1.23 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
matrix:
include:
- language: php
php: "7.0"
before_script:
- whoami
- pwd
- cat /etc/os-release
- composer install --no-interaction --no-progress
script:
- composer test-php-lint
- composer test-minus-x
- language: php
php: "7.1"
before_script:
- whoami
- pwd
- cat /etc/os-release
- composer install --no-interaction --no-progress
script:
- composer test-php-lint
# Add this in a later commit since style fixes will be needed
# - composer test-phpcs
- language: php
php: "7.2"
before_script:
- whoami
- pwd
- cat /etc/os-release
- composer install --no-interaction --no-progress
script:
- composer test-php-lint
- language: php
php: "7.3"
before_script:
- whoami
- pwd
- cat /etc/os-release
- composer install --no-interaction --no-progress
script:
- composer test-php-lint
- language: node_js
node_js: "lts/*"
before_script:
- whoami
- pwd
- cat /etc/os-release
- npm install -g eslint
script:
- eslint . --color