File tree Expand file tree Collapse file tree 5 files changed +38
-30
lines changed Expand file tree Collapse file tree 5 files changed +38
-30
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
/. *
2
2
! /.gitignore
3
- ! /.travis.yml
3
+ ! /.github
4
4
/bower_components /
5
5
/node_modules /
6
6
/output /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " purescript-halogen-css" ,
3
- "homepage" : " https://github.com/slamdata/purescript-halogen-css" ,
4
- "description" : " An adapter between the `purescript-halogen` and `purescript-css` libraries." ,
5
- "keywords" : [
6
- " purescript" ,
7
- " halogen" ,
8
- " css"
9
- ],
10
3
"license" : " Apache-2.0" ,
11
4
"repository" : {
12
5
"type" : " git" ,
13
- "url" : " git ://github.com/slamdata/purescript-halogen-css.git"
6
+ "url" : " https ://github.com/slamdata/purescript-halogen-css.git"
14
7
},
15
8
"ignore" : [
16
9
" **/.*" ,
22
15
" package.json"
23
16
],
24
17
"dependencies" : {
25
- "purescript-css" : " ^4 .0.0 " ,
26
- "purescript-halogen" : " ^4.0.0 "
18
+ "purescript-css" : " ^5 .0.1 " ,
19
+ "purescript-halogen" : " ^6.1.1 "
27
20
}
28
21
}
Original file line number Diff line number Diff line change 6
6
"build" : " pulp build -- --censor-lib --strict"
7
7
},
8
8
"devDependencies" : {
9
- "pulp" : " ^12.2 .0" ,
10
- "purescript" : " 0.12.0 " ,
11
- "purescript-psa" : " ^0.6.0 "
9
+ "pulp" : " ^15.0 .0" ,
10
+ "purescript" : " 0.14.1 " ,
11
+ "purescript-psa" : " ^0.8.2 "
12
12
}
13
13
}
You can’t perform that action at this time.
0 commit comments