| name | instantly-ci-integration |
| description | Configure CI/CD pipelines for Instantly.ai integrations with GitHub Actions.
Use when setting up automated testing, deployment pipelines,
or continuous validation of Instantly API integrations.
Trigger with phrases like "instantly ci", "instantly github actions",
"instantly pipeline", "instantly automated testing", "instantly ci/cd".
|
| allowed-tools | Read, Write, Edit, Bash(npm:*), Grep |
| version | 1.12.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","instantly","ci-cd","github-actions","testing"] |
| compatibility | Designed for Claude Code, also compatible with Codex and OpenClaw |
Instantly CI Integration
Overview
Set up CI/CD pipelines for Instantly API v2 integrations. Covers GitHub Actions workflows for testing against the Instantly mock server, validating API key scopes, and deploying webhook receivers. Uses the mock server at `` so CI runs don't send real emails or consume production API limits.
Prerequisites
- GitHub repository with Instantly integration code
INSTANTLY_API_KEY secret in GitHub repo settings (for production tests)
- Node.js 18+ or Python 3.10+ in the project
Instructions
Step 1: GitHub Actions Workflow
name: Instantly Integration CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
env:
INSTANTLY_USE_MOCK: "true"
INSTANTLY_BASE_URL: "https://developer.instantly.ai/_mock/api/v2"
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
- name: Type