Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: update deps (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain authored Apr 12, 2021
1 parent 10db886 commit ea880f7
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 49 deletions.
13 changes: 0 additions & 13 deletions .aegir.js

This file was deleted.

35 changes: 35 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- run: npx aegir lint
- run: npx aegir build
- run: npx aegir dep-check
test-node:
needs: check
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [14, 15]
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install -g @mapbox/node-pre-gyp
- run: npm install
- run: npx aegir test -t node --cov --bail
- uses: codecov/codecov-action@v1
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,14 @@
"filesize": "^6.1.0",
"it-buffer": "^0.1.1",
"it-concat": "^1.0.0",
"it-reader": "^2.1.0",
"it-to-stream": "^0.1.1",
"it-reader": "^3.0.0",
"it-to-stream": "^1.0.0",
"mime-types": "^2.1.27",
"multihashes": "^4.0.2",
"p-try-each": "^1.0.1"
},
"devDependencies": {
"aegir": "^32.0.2",
"aegir": "^33.0.0",
"cids": "^1.0.0",
"get-stream": "^6.0.0",
"ipfs": "^0.54.2",
Expand Down
5 changes: 5 additions & 0 deletions test/fixtures/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Make sure fixtures have correct line endings on windows

*.txt text eol=lf
*.svg text eol=lf
*.html text eol=lf

0 comments on commit ea880f7

Please sign in to comment.