Skip to content

CI

The ci.yml workflow runs on every push and pull request to main. It ensures code quality stays high.

  1. Checks out the repo
  2. Sets up Node.js
  3. Installs dependencies
  4. Runs linting (pnpm run lint)
  5. Runs type checking (pnpm run typecheck)
  6. Runs tests (pnpm test)

The CI workflow doesn’t need any API keys or secrets — it only runs static analysis and unit tests.