File tree Expand file tree Collapse file tree 4 files changed +33
-2755
lines changed Expand file tree Collapse file tree 4 files changed +33
-2755
lines changed Original file line number Diff line number Diff line change 11/. *
22! /.gitignore
33! /.github
4+ ! /.travis.yml
5+
6+ # Dependencies
7+ bower_components
8+ node_modules
9+
10+ # Generated files
11+ output
12+ generated-docs
13+
14+ # Lockfiles
15+ package-lock.json
16+ * .lock
17+
18+ # Extra files
419! /.jscsrc
520! /.jshintrc
6- ! /.travis.yml
7- /bower_components /
8- /generated-docs /
9- /node_modules /
10- /output /
21+ ! /.eslintc.json
Original file line number Diff line number Diff line change @@ -2,14 +2,22 @@ language: node_js
22dist : trusty
33sudo : required
44node_js : stable
5+ env :
6+ - PATH=$HOME/purescript:$PATH
57install :
8+ - TAG=$(basename $(curl --location --silent --output /dev/null -w %{url_effective} https://github.com/purescript/purescript/releases/latest))
9+ - curl --location --output $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
612 - npm install -g bower
713 - npm install
8- - bower install
14+ - bower install --production
915script :
1016 - npm run -s build
17+ - bower install
18+ - npm run -s test
1119after_success :
12- - >-
13- test $TRAVIS_TAG &&
14- echo $GITHUB_TOKEN | pulp login &&
15- echo y | pulp publish --no-push
20+ - >-
21+ test $TRAVIS_TAG &&
22+ echo $GITHUB_TOKEN | pulp login &&
23+ echo y | pulp publish --no-push
You can’t perform that action at this time.
0 commit comments