Skip to content

Add price and apr snapshots #24

Add price and apr snapshots

Add price and apr snapshots #24

Workflow file for this run

name: Lint & Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint & Format Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '18'
- uses: pnpm/action-setup@v3
with:
version: 8
run_install: |
- recursive: true
args: [--no-frozen-lockfile]
- name: Run ESLint
run: pnpm lint
- name: Check Formatting
run: pnpm format:check
- name: Type Check
run: pnpm typecheck