File tree 4 files changed +30
-4385
lines changed
4 files changed +30
-4385
lines changed Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
3
! /.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
4
19
! /.jscsrc
5
20
! /.jshintrc
6
- ! /.travis.yml
7
- /bower_components /
8
- /node_modules /
9
- /output /
Original file line number Diff line number Diff line change @@ -2,16 +2,22 @@ language: node_js
2
2
dist : trusty
3
3
sudo : required
4
4
node_js : stable
5
+ env :
6
+ - PATH=$HOME/purescript:$PATH
5
7
install :
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
6
12
- npm install -g bower
7
13
- npm install
8
- script :
9
14
- bower install --production
15
+ script :
10
16
- npm run -s build
11
17
- bower install
12
- - npm -s test
18
+ - npm run -s test
13
19
after_success :
14
- - >-
15
- test $TRAVIS_TAG &&
16
- echo $GITHUB_TOKEN | pulp login &&
17
- 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