From 686f91ee86b8b96f11d7391200316fc04b7c4c95 Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Fri, 26 Dec 2025 02:58:38 +0000 Subject: [PATCH] docs: 1 files --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f3029a327..d213293a7 100644 --- a/README.md +++ b/README.md @@ -871,7 +871,14 @@ npm run act:build # Test build only npm run act:diagnose # Check setup (no Docker) ``` -Refer to [docs/guides/ACT_CHEAT_SHEET.md](./docs/guides/ACT_CHEAT_SHEET.md) or the detailed [docs/guides/ACT_TESTING.md](./docs/guides/ACT_TESTING.md) guide to mirror GitHub Actions workflows locally and understand each Act mode. +#### Act Modes + +| Mode | Command | Description | +|------|---------|-------------| +| Full CI | `npm run act` | Complete workflow | +| Lint only | `npm run act:lint` | Just linting | +| Build only | `npm run act:build` | Just build | +| Diagnose | `npm run act:diagnose` | Check setup | ---