Skip to content

chore(docs): rewrite the readme #53

chore(docs): rewrite the readme

chore(docs): rewrite the readme #53

Workflow file for this run

name: CI
on:
pull_request:
push:
permissions:
contents: read
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm fmt --check .
- name: Lint
run: pnpm lint
- name: Typecheck
run: pnpm typecheck
- name: Run tests
run: pnpm test