Skip to content

feat(dashboard): add zero-config DeFiLlama pool discovery fallback #498

feat(dashboard): add zero-config DeFiLlama pool discovery fallback

feat(dashboard): add zero-config DeFiLlama pool discovery fallback #498

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
validate:
name: validate (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
node-version: [20, 22]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- name: Install dependencies (npm ci)
run: npm ci
- name: Lint
run: npm run lint
- name: Typecheck
run: npm run typecheck
- name: Validate OpenClaw BTC5m schema artifacts
run: npm run schema:ci-check
- name: Security check
run: npm run security:check
- name: Unit tests (bounded retry)
run: |
npm test || (sleep 2 && npm test)