GitHub Actions for web app CI/CD, testing, and deployment.
Scanned 9/2/2026
Install to Claude Code
npx -y skills add a5c-ai/babysitter --skill github-actions-web --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Github Actions Web?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/a5c-ai-github-actions-web-babysitter)More formats (shields.io, HTML) on the badges page.
---
name: github-actions-web
description: GitHub Actions for web app CI/CD, testing, and deployment.
allowed-tools: Read, Write, Edit, Bash, Glob, Grep
graph:
domains: [domain:web-development]
specializations: [specialization:web-development]
skillAreas: [skill-area:deployment-infrastructure-management]
roles: [role:frontend-engineer, role:devops-engineer]
workflows: [workflow:pull-request-lifecycle, workflow:feature-development]
topics: [topic:continuous-integration]
---
# GitHub Actions Web Skill
Expert assistance for CI/CD with GitHub Actions.
## Capabilities
- Create CI/CD workflows
- Configure test automation
- Set up deployment pipelines
- Handle secrets
- Optimize workflow performance
## Workflow
```yaml
name: CI/CD
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm run test
- run: npm run build
deploy:
needs: test
if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: amondnet/vercel-action@v25
with:
vercel-token: ${{ secrets.VERCEL_TOKEN }}
vercel-org-id: ${{ secrets.VERCEL_ORG_ID }}
vercel-project-id: ${{ secrets.VERCEL_PROJECT_ID }}
vercel-args: '--prod'
```
## Target Processes
- ci-cd-setup
- automated-testing
- deployment-automation
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!