aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/preact/.travis.yml
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/preact/.travis.yml')
-rw-r--r--thirdparty/preact/.travis.yml30
1 files changed, 30 insertions, 0 deletions
diff --git a/thirdparty/preact/.travis.yml b/thirdparty/preact/.travis.yml
new file mode 100644
index 000000000..5953c1a84
--- /dev/null
+++ b/thirdparty/preact/.travis.yml
@@ -0,0 +1,30 @@
+sudo: false
+
+language: node_js
+
+node_js:
+ - "6"
+
+cache:
+ directories:
+ - node_modules
+
+install:
+ - npm install
+
+script:
+ - npm run build
+ - npm run test
+ - SAUCELABS=true COVERAGE=false FLAKEY=false PERFORMANCE=false npm run test:karma
+
+# Necessary to compile native modules for io.js v3 or Node.js v4
+env:
+ - CXX=g++-4.8
+
+# Necessary to compile native modules for io.js v3 or Node.js v4
+addons:
+ apt:
+ sources:
+ - ubuntu-toolchain-r-test
+ packages:
+ - g++-4.8