Skip to content

Lock web3.js to 1.x for compatibility #8

Lock web3.js to 1.x for compatibility

Lock web3.js to 1.x for compatibility #8

Workflow file for this run

name: Pull requests
on:
pull_request:
jobs:
unit-test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./core
strategy:
matrix:
node:
- "current"
- "lts/*"
name: Run unit tests on Node ${{ matrix.node }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install Dependencies
run: npm install
- name: Run unit tests
run: npm test