Skip to content

Merge pull request #50 from QuantWealth/fix/batch-order #31

Merge pull request #50 from QuantWealth/fix/batch-order

Merge pull request #50 from QuantWealth/fix/batch-order #31

Workflow file for this run

name: CI
on: [push]
concurrency:
group: ${{github.workflow}}-${{github.ref}}
cancel-in-progress: true
env:
MAINNET_RPC: ${{ secrets.MAINNET_RPC }}
SEPOLIA_RPC: ${{ secrets.SEPOLIA_RPC }}
jobs:
build-test:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'yarn'
- name: Check Yarn version
run: yarn --version
- name: Install dependencies
run: yarn install
- name: Build
run: yarn build