Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
chore: update peer id, interfaces, etc (#115)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: requires node 15+
  • Loading branch information
achingbrain authored Dec 2, 2021
1 parent 216ff30 commit f7b8ce0
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
strategy:
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
node: [14, 15]
node: [16]
fail-fast: true
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: npm install
Expand All @@ -37,12 +37,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npx aegir test -t browser -t webworker --bail
test-firefox:
needs: check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: lts/*
- run: npm install
- run: npx aegir test -t browser -t webworker --bail -- --browser firefox
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,20 +25,20 @@
"homepage": "https://github.com/libp2p/js-libp2p-bootstrap",
"repository": "github:libp2p/js-libp2p-bootstrap",
"engines": {
"node": ">=14.0.0"
"node": ">=15.0.0"
},
"types": "dist/src/index.d.ts",
"devDependencies": {
"@types/debug": "^4.1.5",
"aegir": "^33.0.0",
"libp2p-interfaces": "^1.0.0",
"libp2p-interfaces-compliance-tests": "^1.0.0"
"aegir": "^36.0.2",
"libp2p-interfaces": "^2.0.1",
"libp2p-interfaces-compliance-tests": "^2.0.1"
},
"dependencies": {
"debug": "^4.3.1",
"mafmt": "^10.0.0",
"multiaddr": "^10.0.0",
"peer-id": "^0.15.0"
"peer-id": "^0.16.0"
},
"contributors": [
"David Dias <[email protected]>",
Expand Down

0 comments on commit f7b8ce0

Please sign in to comment.