fix: Fixes #445 with functions to check if bootnode and bootnodeList CLI args start with enr and add bootnodes to History Network protocol instance #1428
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PortalNetwork | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
env: | |
cwd: ${{github.workspace}}/packages/portalnetwork | |
defaults: | |
run: | |
working-directory: packages/portalnetwork | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
test-unit-portalnetwork: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: 'npm' | |
- run: npm i | |
working-directory: ${{ github.workspace }} | |
- run: npm run lint | |
- run: npm run test | |
- run: npm run test:integration | |