Skip to content

Commit

Permalink
Image of CI + CI
Browse files Browse the repository at this point in the history
  • Loading branch information
fabcotech committed Jul 10, 2024
1 parent 4c30f0d commit e5d9e9a
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 'Lint and build'

on:
push:
branches:
- '*'

jobs:
lintandbuild:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Node JS
uses: actions/setup-node@v4
with:
node-version: 20.11

- name: Install dependencies
run: yarn

- name: Prettier check
run: yarn prettier:check

- name: ESLint lint
run: yarn lint

- name: Build
run: yarn build
2 changes: 2 additions & 0 deletions README.MD
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Binance Kiwi CLI

![state of the workflow](https://github.com/fabcotech/binance-kiwi-cli/actions/workflows/main.yml/badge.svg)

![Kiwi](https://raw.githubusercontent.com/fabcotech/binance-kiwi-cli/main/assets/kiwi.png)

A fun CLI that makes (some) regular binance API operations very easy to execute. For example `--cancel-open-orders`, `--swap-all-to-usd`, and `--buy ETH --amount 10`. `USDC` is the base USD currency.
Expand Down

0 comments on commit e5d9e9a

Please sign in to comment.