Skip to content

Added market.base and market.quote facts #7

Added market.base and market.quote facts

Added market.base and market.quote facts #7

Workflow file for this run

name: CI
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: '14.x'
- run: npm install
- name: Lint
run: npm run lint
- name: Test
run: npm run test