travis, attempt to fix the build by using updated go version

Michael Muré created

Change summary

.travis.yml | 18 ++++++++++++++----
1 file changed, 14 insertions(+), 4 deletions(-)

Detailed changes

.travis.yml 🔗

@@ -1,13 +1,13 @@
 matrix:
   include:
   - language: go
-    go: "1.10"
+    go: 1.10.x
   - language: go
-    go: "1.11"
+    go: 1.11.x
   - language: go
-    go: "1.12"
+    go: 1.12.x
   - language: go
-    go: "1.13"
+    go: 1.13.x
   - language: node_js
     node_js: 8
     before_install:
@@ -28,6 +28,16 @@ matrix:
     before_install:
       - cd webui
     after_success: []
+  - language: node_js
+    node_js: 12
+    before_install:
+      - cd webui
+    after_success: []
+  - language: node_js
+    node_js: 13
+    before_install:
+      - cd webui
+    after_success: []
 
 env:
   GO111MODULE=on