Skip to content

πŸ–ŠοΈ type code block syntax highlighting #36

πŸ–ŠοΈ type code block syntax highlighting

πŸ–ŠοΈ type code block syntax highlighting #36

Workflow file for this run

name: CI β˜‘οΈ
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
check:
name: ✨ Check code quality
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v6
with:
node-version: 22
cache: pnpm
- name: πŸ“¦ Install dependencies
run: pnpm install --frozen-lockfile
- name: πŸ” Lint
run: pnpm lint
- name: 🎨 Format
run: pnpm format:check
- name: βœ… Test
run: pnpm test