Skip to content

Commit c30f40b

Browse files
committed
Add travis build
1 parent edce3eb commit c30f40b

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
/.*
22
!/.gitignore
3+
!/.travis.yml
34
/bower_components/
45
/node_modules/
56
/output/

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: node_js
2+
node_js:
3+
- "0.10"
4+
install:
5+
- "sudo apt-get install cabal-install"
6+
- "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

Comments
 (0)