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 859fc22 commit 8316675Copy full SHA for 8316675
.travis.yml
@@ -1,11 +1,19 @@
1
language: node_js
2
sudo: false
3
node_js:
4
- - 0.10
+ - 4
5
install:
6
- npm install bower gulp -g
7
- npm install && bower install
8
script:
9
- gulp
10
- node ./test-server.js &
11
- sleep 2 && node tmp/test.js
12
+after_success:
13
+- >-
14
+ test $TRAVIS_TAG &&
15
+ node_modules/.bin/psc-publish > .pursuit.json &&
16
+ curl -X POST http://pursuit.purescript.org/packages \
17
+ -d @.pursuit.json \
18
+ -H 'Accept: application/json' \
19
+ -H "Authorization: token ${GITHUB_TOKEN}"
0 commit comments