Push the current branch and verify it against the CI-equivalent test surface on an available SSH remote target, including selecting a target not currently used by Invoker, creating a temporary remote worktree, and running `pnpm run test:all` with CI-style setup. Use when you need pre-merge confidence that mirrors `.github/workflows/ci.yml` more closely than local-only tests.
Use the helper script in this skill to run CI-style verification on a remote SSH target.
bash skills/remote-ci-verify/scripts/run-remote-ci-verify.sh
origin (configurable).INVOKER_REPO_CONFIG_PATH or ~/.invoker/config.json).remote_target_id with active statuses).By default the remote flow runs:
pnpm install --frozen-lockfile
pnpm --filter @invoker/ui build
pnpm --filter @invoker/app exec playwright install --with-deps
CI=true pnpm run test:all
This mirrors the core test job in .github/workflows/ci.yml (test-all).
CI_VERIFY_TARGETS=target-a,target-b: limit target IDs.CI_VERIFY_PUSH=0: skip git push.CI_VERIFY_FORCE_PUSH=1: force push with lease.CI_VERIFY_REMOTE_TEST_COMMAND='pnpm run test:all:extended': override test command.CI_VERIFY_REMOTE_INSTALL_PLAYWRIGHT_DEPS=0: skip Playwright system deps step.CI_VERIFY_KEEP_REMOTE_WORKTREE=1: keep remote worktree for debugging.CI_VERIFY_DB_PATH=/path/to/invoker.db: override busy-target DB source.remoteTargets are configured in Invoker config with valid host, user, sshKeyPath.git, node, and pnpm available in non-interactive SSH sessions.origin.