mirror of https://github.com/openclaw/openclaw.git
chore: updated PR review skills and workflow info on tests + fake timers
This commit is contained in:
parent
9866a857a7
commit
c27b03794a
|
|
@ -88,6 +88,7 @@ Is the code properly scoped?
|
|||
Is the code properly typed?
|
||||
Is the code hardened?
|
||||
Do we have enough tests?
|
||||
Are tests using fake timers where relevant? (e.g., debounce/throttle, retry backoff, timeout branches, delayed callbacks, polling loops)
|
||||
Do not add performative tests, ensure tests are real and there are no regressions.
|
||||
Take your time, fix it properly, refactor if necessary.
|
||||
Do you see any follow-up refactors we should do?
|
||||
|
|
|
|||
|
|
@ -49,7 +49,7 @@ Create a checklist of all merge steps, print it, then continue and execute the c
|
|||
Use an isolated worktree for all merge work.
|
||||
|
||||
```sh
|
||||
cd ~/Development/openclaw
|
||||
cd ~/dev/openclaw
|
||||
# Sanity: confirm you are in the repo
|
||||
git rev-parse --show-toplevel
|
||||
|
||||
|
|
@ -167,7 +167,7 @@ gh pr view <PR> --json state --jq .state
|
|||
Run cleanup only if step 6 returned `MERGED`.
|
||||
|
||||
```sh
|
||||
cd ~/Development/openclaw
|
||||
cd ~/dev/openclaw
|
||||
|
||||
git worktree remove ".worktrees/pr-<PR>" --force
|
||||
|
||||
|
|
|
|||
|
|
@ -51,7 +51,7 @@ Create a checklist of all review steps, print it, then continue and execute the
|
|||
Use an isolated worktree for all review work.
|
||||
|
||||
```sh
|
||||
cd ~/Development/openclaw
|
||||
cd ~/dev/openclaw
|
||||
# Sanity: confirm you are in the repo
|
||||
git rev-parse --show-toplevel
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue