We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent edce3eb commit c30f40bCopy full SHA for c30f40b
.gitignore
@@ -1,5 +1,6 @@
1
/.*
2
!/.gitignore
3
+!/.travis.yml
4
/bower_components/
5
/node_modules/
6
/output/
.travis.yml
@@ -0,0 +1,14 @@
+language: node_js
+node_js:
+ - "0.10"
+install:
+ - "sudo apt-get install cabal-install"
+ - "cabal update"
7
+ - "cabal install Cabal cabal-install"
8
+ - "export PATH=~/.cabal/bin:$PATH"
9
+ - "cabal install purescript --force-reinstalls"
10
+ - "npm install bower grunt-cli -g"
11
+ - "npm install"
12
+ - "bower install"
13
+script:
14
+ - "grunt test"
0 commit comments