Travis CI: Allow node.js 0.11 to fail.
authorXhmikosR <xhmikosr@gmail.com>
Sat, 31 Jan 2015 13:35:41 +0000 (15:35 +0200)
committerXhmikosR <xhmikosr@gmail.com>
Sat, 31 Jan 2015 13:35:41 +0000 (15:35 +0200)
.travis.yml

index 672a1c7..b9cd75d 100644 (file)
@@ -1,9 +1,16 @@
 language: node_js
+
 node_js:
   - "0.10"
   - "0.11"
+
 branches:
   only:
     - gh-pages
+
 before_script:
   - npm install -g grunt-cli
+
+matrix:
+  allow_failures:
+    - node_js: "0.11"