mirror of
https://github.com/rowtype-yoga/purescript-unique.git
synced 2024-12-02 09:52:01 +03:00
25 lines
764 B
YAML
25 lines
764 B
YAML
language: node_js
|
|
sudo: false
|
|
node_js:
|
|
- 5
|
|
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
|
|
- npm install
|
|
script:
|
|
- npm run build
|
|
- npm run test
|
|
after_success:
|
|
- >-
|
|
test $TRAVIS_TAG &&
|
|
psc-publish > .pursuit.json &&
|
|
curl -X POST http://pursuit.purescript.org/packages \
|
|
-d @.pursuit.json \
|
|
-H 'Accept: application/json' \
|
|
-H "Authorization: token ${GITHUB_TOKEN}"
|