Skip to content

Add privy

Add privy #1

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
lint-test-build:
name: Lint, test, build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm run check
- name: Test
run: pnpm run test
- name: Build
run: pnpm run build
env:
# Placeholder so build succeeds; set VITE_PRIVY_APP_ID in repo secrets for real builds
VITE_PRIVY_APP_ID: "ci-placeholder"
VITE_HYPERLIQUID_TESTNET: "true"