From 304d8275154362ae70d34a8079e4a61e63f4a38d Mon Sep 17 00:00:00 2001 From: Kriday Dave Date: Wed, 15 Jul 2026 10:21:14 +0530 Subject: [PATCH] fix(docs): correct CI task-runner commands in ci.md --- docs/operations/ci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/operations/ci.md b/docs/operations/ci.md index d030b446b6a..7a0447ec070 100644 --- a/docs/operations/ci.md +++ b/docs/operations/ci.md @@ -1,6 +1,6 @@ # CI quality gates -- `.github/workflows/ci.yml` runs `bun run lint`, `bun run typecheck`, and `bun run test` on pull requests and pushes to `main`. +- `.github/workflows/ci.yml` runs `vp check` (lint + typecheck), `vpr typecheck`, and `vp run test` on pull requests and pushes to `main`. - `.github/workflows/release.yml` builds macOS (`arm64` and `x64`), Linux (`x64`), and Windows (`x64`) desktop artifacts from a single `v*.*.*` tag and publishes one GitHub release. - The release workflow auto-enables signing only when platform credentials are present. macOS passkey builds additionally require `APPLE_TEAM_ID` and the `MACOS_PROVISIONING_PROFILE` secret; Windows uses Azure Trusted Signing. Without the core signing credentials, it still releases unsigned artifacts. - See [Release Checklist](./release.md) for the full release/signing setup checklist.