Skip to content

Commit

Permalink
Add Travis config
Browse files Browse the repository at this point in the history
  • Loading branch information
paf31 committed Apr 19, 2015
1 parent 85ed4c3 commit 43b15c0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/.*
!/.gitignore
.psci
/bower_components/
/node_modules/
/output/
Expand Down
15 changes: 15 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
language: node_js
node_js:
- 0.10
env:
- PATH=$HOME/purescript:$PATH
install:
- TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
- wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
- tar -xvf $HOME/purescript.tar.gz -C $HOME/
- chmod a+x $HOME/purescript
- npm install bower grunt-cli -g
- npm install
- bower install
script:
- grunt

0 comments on commit 43b15c0

Please sign in to comment.