Skip to content

fix(ponder-build): move tests out the src/ dir #109

fix(ponder-build): move tests out the src/ dir

fix(ponder-build): move tests out the src/ dir #109

Workflow file for this run

name: Static Analysis
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
static-analysis:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- name: Audit dependencies
run: pnpm audit --audit-level=low
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Biome CI
run: pnpm biome ci
- name: Run TypeScript type checks
run: pnpm run typecheck