Skip to content

docs: add supported chains, smart routing, X/Twitter, search, image e… #26

docs: add supported chains, smart routing, X/Twitter, search, image e…

docs: add supported chains, smart routing, X/Twitter, search, image e… #26

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
jobs:
ci:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run lint
- name: Typecheck
run: pnpm run typecheck
- name: Test
run: pnpm run test --run
- name: Build
run: pnpm run build