Skip to content

Hive fixes

Hive fixes #2039

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: [20]
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm i -g @mapbox/node-pre-gyp
- run: npm i
working-directory: ${{ github.workspace }}
- run: npm run lint
- run: npm run test
- run: npm run test:integration