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 d218a05 commit c3ec864Copy full SHA for c3ec864
.gitignore
@@ -1,6 +1,6 @@
1
/.*
2
!/.gitignore
3
+!/.travis.yml
4
/bower_components/
5
/node_modules/
6
/output/
-/tmp/
.travis.yml
@@ -0,0 +1,14 @@
+language: node_js
+sudo: false
+node_js:
+ - 0.10
+env:
+ - PATH=$HOME/purescript:$PATH
7
+install:
8
+ - 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')
9
+ - wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
10
+ - tar -xvf $HOME/purescript.tar.gz -C $HOME/
11
+ - chmod a+x $HOME/purescript
12
+ - npm install
13
+script:
14
+ - npm run build
0 commit comments