Add travis configuration (#16)
This commit is contained in:
parent
b293c4c6cc
commit
9727789f71
16
.travis.yml
Normal file
16
.travis.yml
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
language: node_js
|
||||||
|
dist: trusty
|
||||||
|
sudo: required
|
||||||
|
node_js: stable
|
||||||
|
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 -g bower pulp
|
||||||
|
script:
|
||||||
|
- make test
|
||||||
|
after_success:
|
||||||
|
- test -n $TRAVIS_TAG && (echo $GITHUB_TOKEN | pulp login) && (yes | pulp publish --no-push)
|
Loading…
Reference in New Issue
Block a user