Skip to content

docs: update the README.md (#20) #27

docs: update the README.md (#20)

docs: update the README.md (#20) #27

Workflow file for this run

name: ci
permissions: {}
on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch: {}
merge_group: {}
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 🧪 Test project
run: pnpm -r test
timeout-minutes: 10
- name: 📝 Lint
run: pnpm -r lint
- name: 📝 Check format
run: pnpm format:check
- name: 💪 Type check
run: pnpm -r test:typecheck