continuous-testing by aj-geddes/useful-ai-prompts
npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill continuous-testing持续测试将自动化测试集成到软件开发生命周期的各个阶段,在每一环节提供快速的质量反馈。它将测试活动左移到开发流程中,并确保代码变更在生产环境部署前得到自动验证。
最小工作示例:
# .github/workflows/ci.yml
name: Continuous Testing
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
NODE_VERSION: "18"
jobs:
# Unit tests - Fast feedback
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
// ... (完整实现请参阅参考指南)
references/ 目录下的详细实现:
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 指南 | 内容 |
|---|---|
| GitHub Actions CI 流水线 | GitHub Actions CI 流水线 |
| GitLab CI 流水线 | GitLab CI 流水线 |
| Jenkins 流水线 | Jenkins 流水线 |
| 测试选择策略 | 测试选择策略 |
| 不稳定测试检测 | 不稳定测试检测 |
| 测试指标仪表板 | 测试指标仪表板 |
每周安装量
105
代码仓库
GitHub 星标数
116
首次出现
2026年1月21日
安全审计
安装于
opencode87
gemini-cli85
codex84
claude-code83
cursor79
github-copilot69
Continuous testing integrates automated testing throughout the software development lifecycle, providing rapid feedback on quality at every stage. It shifts testing left in the development process and ensures that code changes are validated automatically before reaching production.
Minimal working example:
# .github/workflows/ci.yml
name: Continuous Testing
on:
push:
branches: [main, develop]
pull_request:
branches: [main, develop]
env:
NODE_VERSION: "18"
jobs:
# Unit tests - Fast feedback
unit-tests:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| GitHub Actions CI Pipeline | GitHub Actions CI Pipeline |
| GitLab CI Pipeline | GitLab CI Pipeline |
| Jenkins Pipeline | Jenkins Pipeline |
| Test Selection Strategy | Test Selection Strategy |
| Flaky Test Detection | Flaky Test Detection |
| Test Metrics Dashboard | Test Metrics Dashboard |
Weekly Installs
105
Repository
GitHub Stars
116
First Seen
Jan 21, 2026
Security Audits
Gen Agent Trust HubPassSocketPassSnykFail
Installed on
opencode87
gemini-cli85
codex84
claude-code83
cursor79
github-copilot69