This repository was archived by the owner on Jun 15, 2023. It is now read-only.
Commit 1807eda authored Apr 26, 2021 Verified
File tree 6 files changed +45
-31
lines changed
6 files changed +45
-31
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ - push
5
+ - pull_request
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+
13
+ - uses : purescript-contrib/setup-purescript@main
14
+
15
+ - uses : actions/setup-node@v1
16
+ with :
17
+ node-version : " 12"
18
+
19
+ - name : Install dependencies
20
+ run : |
21
+ npm install -g bower
22
+ npm install
23
+ bower install --production
24
+
25
+ - name : Build source
26
+ run : npm run-script build
27
+
28
+ - name : Run tests
29
+ run : |
30
+ bower install
31
+ npm run-script test --if-present
Original file line number Diff line number Diff line change 1
1
npm-debug.log
2
2
/. *
3
3
! /.gitignore
4
- ! /.travis.yml
4
+ ! /.github
5
5
! /.eslintrc.json
6
6
/bower_components /
7
7
/node_modules /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# purescript-clipboard
2
2
3
3
[ ![ Latest release] ( http://img.shields.io/github/release/slamdata/purescript-clipboard.svg )] ( https://github.com/slamdata/purescript-clipboard/releases )
4
- [ ![ Build status ] ( https://travis-ci.org /slamdata/purescript-clipboard.svg?branch=master )] ( https://travis- ci.org/slamdata/purescript-clipboard )
4
+ ![ Build Status ] ( https://github.com /slamdata/purescript-clipboard/actions/workflows/ ci.yml/badge.svg )
5
5
6
6
Basic PureScript bindings for the [ clipboard.js] ( https://github.com/zenorocha/clipboard.js/ ) library.
7
7
Original file line number Diff line number Diff line change 6
6
],
7
7
"repository" : {
8
8
"type" : " git" ,
9
- "url" : " git ://github.com/slamdata/purescript-clipboard.git"
9
+ "url" : " https ://github.com/slamdata/purescript-clipboard.git"
10
10
},
11
11
"ignore" : [
12
12
" **/.*" ,
18
18
" package.json"
19
19
],
20
20
"dependencies" : {
21
- "purescript-prelude" : " ^4.1.1 " ,
22
- "purescript-web-dom" : " ^3 .0.0" ,
23
- "purescript-css" : " ^4 .0.0 "
21
+ "purescript-prelude" : " ^5.0.0 " ,
22
+ "purescript-web-dom" : " ^5 .0.0" ,
23
+ "purescript-css" : " ^5 .0.1 "
24
24
},
25
25
"devDependencies" : {
26
- "purescript-web-html" : " ^2.2 .1" ,
27
- "purescript-web-events" : " ^2 .0.1 "
26
+ "purescript-web-html" : " ^3.0 .1" ,
27
+ "purescript-web-events" : " ^3 .0.0 "
28
28
}
29
29
}
Original file line number Diff line number Diff line change 7
7
"build-example" : " pulp browserify -I example/src --to example/example.js"
8
8
},
9
9
"dependencies" : {
10
- "clipboard" : " ^2.0.4 " ,
11
- "eslint" : " ^5.16 .0" ,
12
- "pulp" : " ^13 .0.0" ,
13
- "purescript" : " ^0.13.0 " ,
14
- "purescript-psa" : " ^0.7.3 " ,
15
- "rimraf" : " ^2.6.3 "
10
+ "clipboard" : " ^2.0.8 " ,
11
+ "eslint" : " ^7.25 .0" ,
12
+ "pulp" : " ^15 .0.0" ,
13
+ "purescript" : " ^0.14.1 " ,
14
+ "purescript-psa" : " ^0.8.2 " ,
15
+ "rimraf" : " ^3.0.2 "
16
16
}
17
17
}
You can’t perform that action at this time.
0 commit comments