-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
41 lines (41 loc) · 1.13 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
env:
global:
- CC_TEST_REPORTER_ID=efa5aa59a604b59fd9ea9e4280cb9a81f0fc6c058212e81f951af54c7f19d46e
language: node_js
node_js:
- "lts/*"
- "node"
os:
- linux
- osx
cache:
directories:
- node_modules # NPM packages
before_script:
- curl -L https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar -o phpcbf
- ls -la
- sudo chmod a+x ./phpcbf || true
- which phpcbf || true
- ls -la
- sudo mv ./phpcbf /usr/local/bin/phpcbf
- which phpcbf || true
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter;
elif [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 > ./cc-test-reporter;
else
echo Error:TRAVIS_OS_NAME && exit 1;
fi
- chmod +x ./cc-test-reporter
- ./cc-test-reporter before-build
script:
- which phpcbf
- phpcbf --version
- npm run build
- npm test
after_script:
- ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT
notifications:
email:
on_success: never
on_failure: change