Skip to content

Add image to README #3110

Add image to README

Add image to README #3110

Workflow file for this run

name: Lint
permissions:
contents: read
on:
push:
pull_request:
types: [opened, reopened, synchronize]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2 # Setup pnpm
with:
version: latest
- run: pnpm install
- name: Check TypeScript
run: pnpm tsc
- name: Run Oxlint
run: pnpm lint
- name: Check formatting
run: pnpm format:check