Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计异常

github-actions-testingGitHub actions 测试

Agent Skill

用于围绕 GitHub 仓库、Issue、Pull Request、分支、提交和代码协作流程提供辅助能力。它适合让 Agent 查询项目状态、整理变更、辅助创建或检查协作事项,并把仓库中的信息转成可执行的下一步。使用时需要区分只读查询和写入操作;涉及创建 PR、修改 Issue、推送分支或访问私有仓库时,应确认 token 权限、目标仓库范围和用户授权。

总安装

343

周安装

14

GitHub Stars

106

下载量

111
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:github-actions-testing(GitHub actions 测试)
来源仓库:https://github.com/pr-pm/prpm
仓库路径:skills/github-actions-testing
安装命令:
npx skills add https://github.com/pr-pm/prpm --skill github-actions-testing
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/pr-pm/prpm --skill github-actions-testing

简介

这项技能可以帮助您:

  • ✅ 在推送之前捕获 90% 以上的工作流程失败
  • ✅ 了解为什么本地测试没有发现问题
  • ✅ 快速修复常见的 GitHub Actions 问题
  • ✅ 建立对 CI/CD 管道的信心
  • ✅ 减少迭代时间(不再有推送-失败-修复-推送循环)
  • 每当您使用 GitHub Actions 时请联系我,以确保您的工作流程在进入 CI 之前是可靠的。
  • 每周安装量
  • 14
  • 存储库
  • pr-pm/rpm
  • GitHub 之星
  • 106
  • 第一次看到
  • 2026 年 1 月 25 日
  • 安全审计
  • Gen 代理信任中心失败
  • 套接字通行证
  • 斯尼克通行证

SKILL.md

SKILL: GitHub Actions Testing & Validation Expert

Description

Interactive expert for testing and validating GitHub Actions workflows before deployment. Prevents common CI failures by catching cache configuration errors, path issues, monorepo dependency problems, and service container configuration mistakes.

Capabilities

This skill provides:

  1. Pre-Push Validation: Complete workflow validation before pushing to GitHub
  2. Cache Configuration: Ensure cache-dependency-path is correctly specified
  3. Monorepo Build Order: Validate workspace dependency build sequences
  4. Service Container Setup: Guide proper service container configuration
  5. Path Validation: Verify all paths exist and are accessible
  6. Local Testing: Run workflows locally with act (Docker-based simulation)
  7. Static Analysis: Lint workflows with actionlint and yamllint

When to Use This Skill

Invoke this skill when:

  • Creating or modifying GitHub Actions workflows
  • Debugging workflow failures in CI
  • Setting up new repositories with CI/CD
  • Migrating to monorepo architecture
  • Adding service containers to workflows
  • Experiencing cache-related failures
  • Getting "module not found" errors in CI but not locally

Usage

Quick Validation

"Validate my GitHub Actions workflows before I push"

I'll:

  1. Run actionlint on all workflow files
  2. Check for missing cache-dependency-path configurations
  3. Validate all working-directory paths exist
  4. Verify monorepo build order is correct
  5. Check service container configurations
  6. Provide a pre-push checklist

Debugging Workflow Failures

"My GitHub Actions workflow is failing with [error message]"

I'll:

  1. Analyze the error message
  2. Identify the root cause
  3. Explain why local testing didn't catch it
  4. Provide the correct configuration
  5. Show how to test the fix locally

Setup New Repository

"Set up GitHub Actions testing for my new project"

I'll:

  1. Install required tools (act, actionlint, yamllint)
  2. Create validation scripts
  3. Set up pre-push hooks
  4. Configure recommended workflows
  5. Provide testing procedures

Critical Rules I Enforce

1. Cache Configuration

ALWAYS specify cache-dependency-path explicitly:

# ❌ WRONG
- uses: actions/setup-node@v4
  with:
    cache: 'npm'

# ✅ CORRECT
- uses: actions/setup-node@v4
  with:
    cache: 'npm'
    cache-dependency-path: package-lock.json

Why: GitHub Actions cache resolution fails silently in local testing but errors in CI with "Some specified paths were not resolved, unable to cache dependencies."

2. Monorepo Build Order

ALWAYS build workspace dependencies before type checking:

# ❌ WRONG
- run: npm ci
- run: npx tsc --noEmit

# ✅ CORRECT
- run: npm ci
- run: npm run build --workspace=@prpm/types
- run: npm run build --workspace=@prpm/registry-client
- run: npx tsc --noEmit

Why: TypeScript needs compiled output from workspace dependencies. Local development has pre-built artifacts, but CI starts clean.

3. npm ci in Monorepos

ALWAYS run npm ci from root, not workspace directories:

# ❌ WRONG
- working-directory: packages/infra
  run: npm ci

# ✅ CORRECT
- run: npm ci
- working-directory: packages/infra
  run: pulumi preview

Why: npm workspaces are managed from root. Workspace directories don't have their own package-lock.json.

4. Service Containers

Service containers can't override CMD via options:

# ❌ WRONG
services:
  minio:
    image: minio/minio:latest
    options: server /data  # Ignored!

# ✅ CORRECT
services:
  minio:
    image: minio/minio:latest

steps:
  - run: |
      docker exec $(docker ps -q --filter ancestor=minio/minio:latest) \
        sh -c "minio server /data &"

Why: GitHub Actions service containers ignore custom commands. They must be started manually in steps.

Validation Tools

Required Tools

# macOS
brew install act actionlint yamllint

# Linux
curl https://raw.githubusercontent.com/nektos/act/master/install.sh | sudo bash
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
pip install yamllint

Validation Script

I'll create .github/scripts/validate-workflows.sh:

#!/bin/bash
set -e

echo "🔍 Validating GitHub Actions workflows..."

# 1. Static analysis
actionlint .github/workflows/*.yml
yamllint .github/workflows/*.yml

# 2. Cache configuration check
for file in .github/workflows/*.yml; do
    if grep -q "cache: 'npm'" "$file"; then
        if ! grep -A 2 "cache: 'npm'" "$file" | grep -q "cache-dependency-path"; then
            echo "❌ $file: Missing explicit cache-dependency-path"
            exit 1
        fi
    fi
done

# 3. Path validation
grep -r "working-directory:" .github/workflows/*.yml | while read -r line; do
    dir=$(echo "$line" | sed 's/.*working-directory: //' | tr -d '"')
    if [ ! -d "$dir" ]; then
        echo "❌ Directory does not exist: $dir"
        exit 1
    fi
done

# 4. Check for explicit cache paths
grep -r "cache-dependency-path:" .github/workflows/*.yml | while read -r line; do
    path=$(echo "$line" | sed 's/.*cache-dependency-path: //' | tr -d '"')
    if [ ! -f "$path" ]; then
        echo "❌ Cache dependency path does not exist: $path"
        exit 1
    fi
done

echo "✅ All workflow validations passed"

Pre-Push Checklist

Before pushing workflow changes:

  1. Lint: actionlint.github/workflows/*.yml
  2. Validate: .github/scripts/validate-workflows.sh
  3. Dry Run: act pull_request -W.github/workflows/[workflow].yml -n
  4. Check Cache Paths: Verify all cache-dependency-path values exist
  5. Check Build Order: Ensure workspace dependencies built before type checks
  6. Service Containers: Confirm manual startup if custom commands needed

Common Failure Patterns

"Cannot find module '@prpm/types'"

Root Cause: Workspace dependency not built before type checking

Why Local Works: Previous builds exist in node_modules/

Fix:

- name: Build @prpm/types
  run: npm run build --workspace=@prpm/types
- name: Type check
  run: npx tsc --noEmit

"Cache resolution error"

Root Cause: Missing or incorrect cache-dependency-path

Why act Doesn't Catch: act skips caching entirely

Fix:

- uses: actions/setup-node@v4
  with:
    cache: 'npm'
    cache-dependency-path: package-lock.json  # Explicit!

"npm ci requires package-lock.json"

Root Cause: Running npm ci from workspace directory

Why Local Works: May have workspace-specific package-lock.json

Fix:

# Run from root
- run: npm ci
# Then use working-directory for commands
- working-directory: packages/infra
  run: pulumi preview

"Service container not starting"

Root Cause: Custom command in options is ignored

Why Local Works: docker-compose uses different container runtime

Fix:

steps:
  - run: docker exec [container] sh -c "command &"

Why act Alone Isn't Enough

Local testing with act doesn't catch:

  1. Cache Validation: act skips GitHub's cache system entirely
  2. Service Commands: Different container runtime, different behavior
  3. Build Artifacts: Local has pre-built workspace dependencies
  4. Clean Environment: CI starts completely fresh every time
  5. GitHub-Specific Features: Some actions only work on GitHub's runners

Solution: Use the complete validation suite (actionlint + custom validators + act dry run)

Interactive Debugging

When you encounter a workflow failure:

  1. Share the error: Paste the exact GitHub Actions error message
  2. I'll analyze: Identify the root cause and why local testing didn't catch it
  3. I'll fix: Provide corrected workflow configuration
  4. I'll validate: Show how to test the fix locally
  5. I'll explain: Clarify why the issue occurred and how to prevent it

Example Interactions

User: "My workflow is failing with 'Some specified paths were not resolved, unable to cache dependencies'"

Me: This is a cache resolution error. You're using cache: 'npm' without specifying cache-dependency-path. GitHub Actions is trying to find package-lock.json but can't locate it.

Here's the fix:

- uses: actions/setup-node@v4
  with:
    node-version: '20'
    cache: 'npm'
    cache-dependency-path: package-lock.json  # Add this

This wasn't caught by act because it skips caching entirely. To prevent this in the future, run:

.github/scripts/validate-workflows.sh

This script checks for missing cache-dependency-path configurations.


User: "TypeScript can't find '@prpm/types' in CI but works locally"

Me: This is a monorepo build order issue. Your local environment has previously built @prpm/types, but CI starts clean.

Add this before your type check:

- name: Build @prpm/types
  run: npm run build --workspace=@prpm/types

Why local worked: You've previously run npm run build which compiled @prpm/types to dist/. That compiled output exists in your node_modules. CI doesn't have this.

To test this scenario locally, delete your dist/ folders and try again:

rm -rf packages/*/dist
npx tsc --noEmit  # Should fail
npm run build --workspace=@prpm/types
npx tsc --noEmit  # Should pass

Continuous Improvement

After each workflow failure in CI:

  1. Analyze: Why didn't local testing catch this?
  2. Document: Add to the common failure patterns
  3. Validate: Update validation scripts to catch it next time
  4. Test: Ensure the validator actually catches the issue

Best Practices

  1. Always validate before pushing: Run the complete validation suite
  2. Keep tools updated: brew upgrade act actionlint yamllint
  3. Test in clean environment occasionally: Use Docker to simulate fresh CI
  4. Document failures: Add new patterns to validation scripts
  5. Use explicit configurations: Never rely on defaults for cache, paths, or commands

Summary

This skill helps you:

  • ✅ Catch 90%+ of workflow failures before pushing
  • ✅ Understand why local testing didn't catch issues
  • ✅ Fix common GitHub Actions problems quickly
  • ✅ Build confidence in your CI/CD pipeline
  • ✅ Reduce iteration time (no more push-fail-fix-push cycles)

Invoke me whenever you're working with GitHub Actions to ensure your workflows are solid before they hit CI.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.14%
按下载量换算40

Claude

27.39%
按下载量换算30

Cursor

18.38%
按下载量换算20

Gemini CLI

8.63%
按下载量换算10

安全审计

Gen Agent Trust Hub

未通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills