Skip to content

improve balance and transfer function and test #53

improve balance and transfer function and test

improve balance and transfer function and test #53

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build-and-test:
runs-on: ubuntu-latest
name: Build all packages and run tests
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Set up Node.js 🍞
uses: actions/setup-node@v2
with:
node-version: '18'
- name: Install Bun (via Bun action) 🍞
uses: oven-sh/setup-bun@v1
- name: Install dependencies
run: bun install
- name: Build auto-utils package 🔧
run: bun run --filter '@autonomys/auto-utils' build
- name: Build all packages 🔧
run: bun run build
- name: Run tests 🧪
run: bun test