github-actions-ci

作者:AgentsRoomAgentsRoom 已驗證尚無安裝尚無按讚更新於 2026年5月7日分類: 工程

它能做什麼

Use when adding or fixing CI workflows. Generates idempotent GitHub Actions with caching, matrix builds, and proper secret scoping.

安裝會在你的 AgentsRoom 桌面版開啟這個條目。如果還沒有安裝應用,你會被帶到下載頁面。

SKILL.md

---
name: github-actions-ci
description: Use when adding or fixing CI workflows. Generates idempotent GitHub Actions with caching, matrix builds, and proper secret scoping.
---

# GitHub Actions CI

When writing or editing `.github/workflows/`:

1. Pin actions to a specific tag or SHA — never `@latest`.
2. Cache `node_modules`, `.next/cache`, `~/.cargo` with `actions/cache` keyed on the relevant lockfile hash.
3. Run lint + typecheck + test in parallel jobs, not sequentially. Use a single setup job that publishes artefacts.
4. Secrets: scope to environment (`environment: production`), never leak to PR runs from forks.
5. Concurrency: `concurrency: { group: ${{ github.ref }}, cancel-in-progress: true }` so pushing twice cancels the older run.

標籤

devopscigithub