Local CI Runner (ACT)

Run GitHub Actions workflows locally in Docker using ACT.

38|9|Updated Oct 30, 2025
One-click install
npx skills add https://github.com/IgorGanapolsky/trading --skill local-ci-runner-act
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Local CI Runner (ACT)
Source: https://github.com/IgorGanapolsky/trading/tree/main/.claude/skills/local_ci_runner
Command: npx skills add https://github.com/IgorGanapolsky/trading --skill local-ci-runner-act

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires docker, act.

What problem does it solve?

This Skill enables running GitHub Actions workflows locally in Docker via ACT to catch CI issues before pushing, saving time and preventing failed PRs.

Core Features & Use Cases

  • Run workflows locally: verify lint/CI steps without remote runs.
  • Lint checks: quick local lint verification.
  • Full CI: run full CI suite in a containerized environment.
  • Pre-push integration: hook into pre-commit checks.

Quick Start

Use ACT to run a workflow locally and verify lint and tests before pushing.

Frequently Asked Questions about Local CI Runner (ACT)

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I run GitHub Actions workflows locally before pushing?

Use ACT to run GitHub Actions workflows locally in Docker without pushing to a remote repository. ACT executes your .github/workflows files in a containerized environment, letting you verify lint checks, tests, and the full CI suite on your machine before creating a PR.

Can I test CI and lint checks locally with Docker?

Yes. ACT runs GitHub Actions workflows in Docker containers locally, simulating your CI environment exactly. This lets you catch lint failures and test breakage instantly instead of waiting for remote CI runs.

How do I integrate ACT with pre-commit hooks?

Configure pre-commit to call ACT as a hook, running your GitHub Actions workflows automatically before each commit. This ensures CI verification happens locally every time and blocks commits that fail your CI suite.

What do I need to run GitHub Actions locally?

Install Docker and ACT. Docker provides the containerized environment where workflows execute, and ACT orchestrates running your .github/workflows files locally with full GitHub Actions compatibility.

Can I run specific workflows or jobs with ACT?

Yes. ACT supports targeting specific workflows or individual jobs within a workflow, letting you run only the checks relevant to your current work instead of the entire CI suite every time.