Skip to content

feat: add usdt arb token config #320

feat: add usdt arb token config

feat: add usdt arb token config #320

name: Run pr checks when a PR is opened
on:
pull_request:
types:
- opened
- synchronize
jobs:
run-checks:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies
run: pnpm install --frozen-lockfile
- name: Run Lint
env:
CI: true
NODE_OPTIONS: '--max_old_space_size=4096'
run: pnpm lint
- name: Run Test
env:
CI: true
NODE_OPTIONS: '--max_old_space_size=4096'
run: pnpm test
- name: Run Build
env:
CI: true
NODE_OPTIONS: '--max_old_space_size=4096'
run: pnpm build