File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CI
2+
3+ on :
4+ push :
5+ branches : [master]
6+ pull_request :
7+ branches : [master]
8+
9+ jobs :
10+ build :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - uses : actions/checkout@v2
14+
15+ - uses : purescript-contrib/setup-purescript@main
16+ with :
17+ purescript : " 0.14.0-rc3"
18+
19+ - uses : actions/setup-node@v1
20+ with :
21+ node-version : " 12"
22+
23+ - name : Install dependencies
24+ run : |
25+ npm install -g bower
26+ npm install
27+ bower install --production
28+
29+ - name : Build source
30+ run : npm run-script build
31+
32+ - name : Run tests
33+ run : |
34+ bower install
35+ npm run-script test --if-present
Original file line number Diff line number Diff line change 11/. *
22! /.gitignore
3- ! /.travis.yml
3+ ! /.github /
44/bower_components /
55/node_modules /
66/output /
Load diff This file was deleted.
Original file line number Diff line number Diff line change 11# purescript-profunctor
22
33[ ![ Latest release] ( http://img.shields.io/github/release/purescript/purescript-profunctor.svg )] ( https://github.com/purescript/purescript-profunctor/releases )
4- [ ![ Build Status] ( https://travis-ci.org/purescript/purescript-profunctor.svg?branch=master )] ( https://travis-ci.org/purescript/purescript-profunctor )
4+ [ ![ Build status] ( https://github.com/purescript/purescript-profunctor/workflows/CI/badge.svg?branch=master )] ( https://github.com/purescript/purescript-profunctor/actions?query=workflow%3ACI+branch%3Amaster )
5+ [ ![ Pursuit] ( https://pursuit.purescript.org/packages/purescript-profunctor/badge )] ( https://pursuit.purescript.org/packages/purescript-profunctor )
56
67Profunctor typeclass.
78
89## Installation
910
1011```
11- bower install purescript- profunctor
12+ spago install profunctor
1213```
1314
1415## 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 },
77 "devDependencies" : {
88 "pulp" : " ^15.0.0" ,
99 "purescript-psa" : " ^0.8.0" ,
10- "rimraf" : " ^2.6 .2"
10+ "rimraf" : " ^3.0 .2"
1111 }
1212}
You can’t perform that action at this time.
0 commit comments