This repository was archived by the owner on Sep 28, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +43
-49
lines changed
Expand file tree Collapse file tree 5 files changed +43
-49
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : ci
2+ on :
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ branches :
8+ - master
9+
10+ jobs :
11+ check :
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v2
15+ - run : npm install
16+ - run : npx aegir lint
17+ - run : npx aegir build
18+ - run : npx aegir dep-check
19+ test-node :
20+ needs : check
21+ runs-on : ${{ matrix.os }}
22+ strategy :
23+ matrix :
24+ os : [windows-latest, ubuntu-latest, macos-latest]
25+ node : [14, 15]
26+ fail-fast : true
27+ steps :
28+ - uses : actions/checkout@v2
29+ - uses : actions/setup-node@v1
30+ with :
31+ node-version : ${{ matrix.node }}
32+ - run : npm install -g @mapbox/node-pre-gyp
33+ - run : npm install
34+ - run : npx aegir test -t node --cov --bail
35+ - uses : codecov/codecov-action@v1
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 3636 "filesize" : " ^6.1.0" ,
3737 "it-buffer" : " ^0.1.1" ,
3838 "it-concat" : " ^1.0.0" ,
39- "it-reader" : " ^2.1 .0" ,
40- "it-to-stream" : " ^0.1.1 " ,
39+ "it-reader" : " ^3.0 .0" ,
40+ "it-to-stream" : " ^1.0.0 " ,
4141 "mime-types" : " ^2.1.27" ,
4242 "multihashes" : " ^4.0.2" ,
4343 "p-try-each" : " ^1.0.1"
4444 },
4545 "devDependencies" : {
46- "aegir" : " ^32 .0.2 " ,
46+ "aegir" : " ^33 .0.0 " ,
4747 "cids" : " ^1.0.0" ,
4848 "get-stream" : " ^6.0.0" ,
4949 "ipfs" : " ^0.54.2" ,
Original file line number Diff line number Diff line change 1+ # Make sure fixtures have correct line endings on windows
2+
3+ * .txt text eol =lf
4+ * .svg text eol =lf
5+ * .html text eol =lf
You can’t perform that action at this time.
0 commit comments