mirror of
https://github.com/fluencelabs/js-libp2p
synced 2025-04-29 12:32:15 +00:00
BREAKING CHANGES: top level types were updated, multiaddr@9.0.0 is used, dialer and keychain internal property names changed and connectionManager minPeers is not supported anymore
102 lines
2.8 KiB
YAML
102 lines
2.8 KiB
YAML
name: examples
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- '**'
|
|
|
|
jobs:
|
|
check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: npx aegir lint
|
|
- run: npx aegir ts -p check
|
|
- run: npx aegir build
|
|
test-auto-relay-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- auto-relay
|
|
test-chat-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- chat
|
|
test-connection-encryption-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- connection-encryption
|
|
test-discovery-mechanisms-example:
|
|
needs: check
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- discovery-mechanisms
|
|
test-echo-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- echo
|
|
test-libp2p-in-the-browser-example:
|
|
needs: check
|
|
runs-on: macos-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- libp2p-in-the-browser
|
|
test-peer-and-content-routing-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- peer-and-content-routing
|
|
test-pnet-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- pnet
|
|
test-protocol-and-stream-muxing-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- protocol-and-stream-muxing
|
|
test-pubsub-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- pubsub
|
|
test-transports-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- transports
|
|
test-webrtc-direct-example:
|
|
needs: check
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- run: npm install
|
|
- run: cd examples && yarn && npm run test -- webrtc-direct |