Skip to content

Merge pull request #5 from OpenZeppelin/chore/refactor-navigation #16

Merge pull request #5 from OpenZeppelin/chore/refactor-navigation

Merge pull request #5 from OpenZeppelin/chore/refactor-navigation #16

Workflow file for this run

name: Lint & Format
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
name: Lint and Format Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run lint and format checks
run: pnpm run check
- name: Build check
run: pnpm run build