Skip to content
This repository has been archived by the owner on Oct 21, 2024. It is now read-only.

feat: txs processor

feat: txs processor #6

Workflow file for this run

name: Unit and integration Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: |
yarn
- name: Check lint
run: yarn lint
- name: Compile
run: yarn build
- name: Unit Test
run: yarn test
env:
API_HOST: localhost
API_PORT: 4100