Skip to content

fix: pass undefined instead of empty object for signOptions in ChainWalletStore #144

fix: pass undefined instead of empty object for signOptions in ChainWalletStore

fix: pass undefined instead of empty object for signOptions in ChainWalletStore #144

Workflow file for this run

name: Run Unit Tests
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: '9.15.4'
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Build project
run: pnpm run build
- name: Run tests
run: pnpm run test