CI
The ci.yml workflow runs on every push and pull request to main. It ensures code quality stays high.
What it does
Section titled “What it does”- Checks out the repo
- Sets up Node.js
- Installs dependencies
- Runs linting (
pnpm run lint) - Runs type checking (
pnpm run typecheck) - Runs tests (
pnpm test)
No secrets required
Section titled “No secrets required”The CI workflow doesn’t need any API keys or secrets — it only runs static analysis and unit tests.