Skip to content

docs: update project documentation to include progress tracker and be… #2

docs: update project documentation to include progress tracker and be…

docs: update project documentation to include progress tracker and be… #2

Workflow file for this run

name: CI
on:
push:
branches: [main, master, develop]
pull_request:
branches: [main]
jobs:
lint-and-test:
name: Lint, Typecheck & Test
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Test
run: pnpm test