Skip to content

Add env examples, audit tooling, fix dependency-health.yml, update docs #309

Add env examples, audit tooling, fix dependency-health.yml, update docs

Add env examples, audit tooling, fix dependency-health.yml, update docs #309

Workflow file for this run

name: CI
on:
pull_request:
push:
jobs:
ci:
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'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Test
run: pnpm test
- name: Build packages
run: pnpm -r build