File tree Expand file tree Collapse file tree 5 files changed +35
-28
lines changed Expand file tree Collapse file tree 5 files changed +35
-28
lines changed Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on : push
4+
5+ jobs :
6+ build :
7+ runs-on : ubuntu-latest
8+ steps :
9+ - uses : actions/checkout@v2
10+
11+ - uses : purescript-contrib/setup-purescript@main
12+ with :
13+ purescript : " 0.14.0-rc3"
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 11/. *
22! /.gitignore
3- ! /.travis.yml
3+ ! /.github /
44package-lock.json
55/bower_components /
66/node_modules /
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11# purescript-transformers
22
33[ ![ Latest release] ( http://img.shields.io/github/release/purescript/purescript-transformers.svg )] ( https://github.com/purescript/purescript-transformers/releases )
4- [ ![ Build status] ( https://travis-ci.org /purescript/purescript-transformers.svg?branch=master )] ( https://travis-ci.org /purescript/purescript-transformers )
4+ [ ![ Build status] ( https://github.com /purescript/purescript-transformers/workflows/CI/badge .svg?branch=master )] ( https://github.com /purescript/purescript-transformers/actions?query=workflow%3ACI+branch%3Amaster )
55
66Monad and comonad transformers based on [ mtl] ( http://hackage.haskell.org/package/mtl ) .
77
88## Installation
99
1010```
11- bower install purescript- transformers
11+ spago install transformers
1212```
1313
1414## Documentation
Original file line number Diff line number Diff line change 22 "private" : true ,
33 "scripts" : {
44 "clean" : " rimraf output && rimraf .pulp-cache" ,
5- "build" : " pulp build -- --censor-lib --strict" ,
5+ "build" : " pulp build -- --censor-lib --strict --censor-codes='UserDefinedWarning' " ,
66 "test" : " pulp test"
77 },
88 "devDependencies" : {
You can’t perform that action at this time.
0 commit comments