ci-cd-deployment

Installation
SKILL.md

CI/CD & Deployment

When to use this skill

  • Configuring GitHub Actions workflows.
  • Setting up automated deployments.
  • Configuring test runners in CI.

1. GitHub Actions

  • Triggers: on: push for branches, on: pull_request for verification.
  • Caching: Always cache dependencies (npm, pip, composer) to speed up builds.
    - uses: actions/setup-node@v4
      with:
        node-version: 18
        cache: 'npm'
    
Installs
3
GitHub Stars
2
First Seen
Feb 21, 2026
ci-cd-deployment — sraloff/gravityboots