-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.travis.yml
49 lines (43 loc) · 844 Bytes
/
.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
sudo: false
language: php
# Cache some data across builds for performance.
cache:
apt: true
directories:
- node_modules
- vendor
- $HOME/.composer/cache
notifications:
email:
on_success: never
on_failure: change
slack:
on_pull_requests: true
on_success: change
on_failure: always
on_start: never
on_cancel: always
rooms:
- wsu-ucomm:n2TLZRJd84rMOMbkKthSEMgS
branches:
only:
- master
matrix:
include:
- php: 7.1
env: WP_TRAVISCI=grunt
before_script:
- export PATH="$HOME/.composer/vendor/bin:$PATH"
- mysql --version
- phpenv config-rm xdebug.ini
- phpenv versions
- php --version
- composer install
- nvm install stable
- npm install -g grunt-cli
- npm install
- npm --version
- node --version
script:
- grunt --version
- grunt default