Local CI checks before merge

VerifiedSafe

Runs the local CI pipeline before merging or pushing, by executing `deno task ci`. Helps ensure code quality before creating a pull request. The pipeline includes type checking, tests, formatting, and linting.

Sby Skills Guide Bot
DevelopmentIntermediate
606/2/2026
Claude CodeCursorWindsurfCopilotCodex
#local-ci#deno#ci-pipeline#pre-push

Recommended for

Our review

Runs a full local CI pipeline (type checking, tests, formatting, linting) before pushing or creating a pull request.

Strengths

  • Automates quality checks before push
  • Clear pipeline order (check → test → fmt → lint)
  • Debug mode for error diagnosis
  • Simple integration with deno task

Limitations

  • Requires the project to use Deno and a defined 'ci' task
  • Does not replace remote CI (local execution only)
  • Can be slow if test suite is large
When to use it

Use this skill before every push or pull request to ensure code passes all basic checks.

When not to use it

Do not use if the project does not use Deno, the 'ci' task is not configured, or you need asynchronous remote CI execution.

Security analysis

Safe
Quality score80/100

The skill runs a local Deno CI command that is project-specific and does not perform destructive, exfiltrating, or obfuscated actions. It only uses Bash and Read, which are permitted tools, and there are no instructions for downloading remote payloads or disabling safety mechanisms.

No concerns found

Examples

Run local CI
Run local CI checks before pushing.
Debug CI failure
Run local CI with debug logging to see detailed errors.
Pre-PR validation
Execute the local CI pipeline before creating a pull request.

name: local-ci description: Run local CI checks before merge or push. Use when user says 'CI', 'ローカルCI', or before creating PRs. allowed-tools: [Bash, Read]

push/マージ前に品質を保証するため、ローカルCIパイプラインを実行する。

  1. deno task ci 実行
  2. エラー時は LOG_LEVEL=debug deno task ci で詳細確認

パイプライン: check(型検査) → test(全テスト) → fmt(フォーマット) → lint(リント)

全チェック通過までpush禁止。

Related skills