- Update dbis_core, cross-chain-pmm-lps, explorer-monorepo, metamask-integration, pr-workspace/chains - Omit embedded publish git dirs and empty placeholders from index Made-with: Cursor
44 lines
1.0 KiB
YAML
44 lines
1.0 KiB
YAML
# Build Chain 138 info hub SPA when its package or workspace lockfile changes.
|
|
name: info-defi-oracle-138
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'info-defi-oracle-138/**'
|
|
- 'pnpm-lock.yaml'
|
|
- 'pnpm-workspace.yaml'
|
|
- '.github/workflows/info-defi-oracle-138.yml'
|
|
push:
|
|
branches: [main, master]
|
|
paths:
|
|
- 'info-defi-oracle-138/**'
|
|
- 'pnpm-lock.yaml'
|
|
- 'pnpm-workspace.yaml'
|
|
- '.github/workflows/info-defi-oracle-138.yml'
|
|
|
|
jobs:
|
|
build:
|
|
name: Typecheck & Vite build
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Setup pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: 10
|
|
|
|
- name: Setup Node
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'pnpm'
|
|
cache-dependency-path: pnpm-lock.yaml
|
|
|
|
- name: Install dependencies
|
|
run: pnpm install --frozen-lockfile
|
|
|
|
- name: Build info-defi-oracle-138
|
|
run: pnpm --filter info-defi-oracle-138 build
|