This repository was archived by the owner on Sep 28, 2021. It is now read-only.
File tree 5 files changed +43
-49
lines changed
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 36
36
"filesize" : " ^6.1.0" ,
37
37
"it-buffer" : " ^0.1.1" ,
38
38
"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 " ,
41
41
"mime-types" : " ^2.1.27" ,
42
42
"multihashes" : " ^4.0.2" ,
43
43
"p-try-each" : " ^1.0.1"
44
44
},
45
45
"devDependencies" : {
46
- "aegir" : " ^32 .0.2 " ,
46
+ "aegir" : " ^33 .0.0 " ,
47
47
"cids" : " ^1.0.0" ,
48
48
"get-stream" : " ^6.0.0" ,
49
49
"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