Skip to content

Switch to StaticJsonRpcProvider (#404) #768

Switch to StaticJsonRpcProvider (#404)

Switch to StaticJsonRpcProvider (#404) #768

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
workflow_dispatch:
jobs:
unit-test:
name: Unit Test
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
- name: Set up node
uses: actions/setup-node@v3
with:
node-version: 18.x
registry-url: https://registry.npmjs.org
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Run Unit Tests
run: npm run test