Skip to content

Split Zoltar, Statoblast, and Trading into shared packages #29

Split Zoltar, Statoblast, and Trading into shared packages

Split Zoltar, Statoblast, and Trading into shared packages #29

Workflow file for this run

name: AugurScan
on:
pull_request:
branches: [main]
paths:
- "augurScan/**"
- "shared/ts/ethereum.ts"
- ".github/workflows/augur-scan.yml"
push:
branches: [main]
paths:
- "augurScan/**"
- "shared/ts/ethereum.ts"
- ".github/workflows/augur-scan.yml"
workflow_dispatch:
permissions:
contents: read
jobs:
checks:
name: Typecheck, unit tests, static checks, and browser build
runs-on: ubuntu-latest
timeout-minutes: 15
defaults:
run:
working-directory: augurScan
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: 1.3.14
- name: Install dependencies
run: bun install --frozen-lockfile
- name: Typecheck
run: bun run typecheck
- name: Unit tests
run: bun run test:unit
- name: Static checks
run: bun run check
- name: Build browser application
run: bun run build