aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorQuentin Gliech <quentingliech@gmail.com>2018-08-18 17:01:56 -0400
committerSandhose <quentingliech@gmail.com>2018-08-19 23:14:45 +0200
commitce2be02c94feb5c9f62fcc054293b92ecf22d4b3 (patch)
treedc576fe738f76509cbf1cfc8146d4cb0d230d690 /.travis.yml
parentbb4ebed08c3f1b1a7ba9968ede75a07f1705d2df (diff)
downloadgit-bug-ce2be02c94feb5c9f62fcc054293b92ecf22d4b3.tar.gz
webui: Ensure code format in CI by running eslint
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml22
1 files changed, 14 insertions, 8 deletions
diff --git a/.travis.yml b/.travis.yml
index 50e9672a..521902f1 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -1,11 +1,14 @@
-language: go
-
-go:
- - "1.9"
- - "1.10.x"
-
-before_install:
- - go get github.com/mitchellh/gox
+matrix:
+ include:
+ - language: go
+ go: "1.9"
+ - language: go
+ go: "1.10.x"
+ - language: node_js
+ node_js: 8
+ before_install:
+ - cd webui
+ after_success: []
install:
- make install
@@ -13,6 +16,9 @@ install:
script:
- make test
+before_install:
+ - go get github.com/mitchellh/gox
+
after_success:
- if [ ! -z "$TRAVIS_TAG" ]; then gox -tags=deploy_build -output "dist/{{.Dir}}_{{.OS}}_{{.Arch}}"; fi