Skip to content

chore: add foundry and aqua contracts #43

chore: add foundry and aqua contracts

chore: add foundry and aqua contracts #43

Workflow file for this run

name: PR validation
on:
pull_request:
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0 # Need full history for affected commands
- name: Install pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install Dependencies
run: pnpm install
- name: Lint affected packages
run: pnpm affected:lint --base=origin/${{ github.base_ref }}
- name: Type Check all packages
run: pnpm lint:types
- name: Test affected packages
run: pnpm affected:test --base=origin/${{ github.base_ref }}
- name: Build affected packages
run: pnpm affected:build --base=origin/${{ github.base_ref }}