Skip to content
This repository was archived by the owner on Sep 28, 2021. It is now read-only.

Commit ea880f7

Browse files
authored
chore: update deps (#86)
1 parent 10db886 commit ea880f7

File tree

5 files changed

+43
-49
lines changed

5 files changed

+43
-49
lines changed

.aegir.js

-13
This file was deleted.

.github/workflows/main.yml

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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

.travis.yml

-33
This file was deleted.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,14 @@
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",

test/fixtures/.gitattributes

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
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

0 commit comments

Comments
 (0)