Skip to content

Commit 9735a91

Browse files
committed
Add travis build
1 parent 310c8b5 commit 9735a91

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-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: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
language: node_js
2+
node_js:
3+
- 0.10
4+
env:
5+
- TAG=v0.6.9.3
6+
install:
7+
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
8+
- sudo tar zxvf $HOME/purescript.tar.gz -C /usr/local/bin purescript/psc{,i,-docs,-make} --strip-components=1
9+
- sudo chmod a+x /usr/local/bin/psc{,i,-docs,-make}
10+
- npm install bower gulp -g
11+
- npm install && bower install
12+
script:
13+
- gulp

0 commit comments

Comments
 (0)