Configure CI/CD pipelines for Ideogram integrations with GitHub Actions.
Use when setting up automated testing, visual regression tests,
or integrating Ideogram validation into your build process.
Trigger with phrases like "ideogram CI", "ideogram GitHub Actions",
"ideogram automated tests", "CI ideogram", "ideogram pipeline".
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Um comando direto ignora o prompt de revisão. Verifique a origem antes de executá-lo.
Instruções da origem · Visualização somente leitura
name
ideogram-ci-integration
description
Configure CI/CD pipelines for Ideogram integrations with GitHub Actions.
Use when setting up automated testing, visual regression tests,
or integrating Ideogram validation into your build process.
Trigger with phrases like "ideogram CI", "ideogram GitHub Actions",
"ideogram automated tests", "CI ideogram", "ideogram pipeline".
allowed-tools
Read, Write, Edit, Bash(gh:*)
version
1.10.0
license
MIT
author
Jeremy Longshore <jeremy@intentsolutions.io>
tags
["saas","ideogram","testing","ci-cd"]
compatibility
Designed for Claude Code, also compatible with Codex and OpenClaw
Ideogram CI Integration
Overview
Set up CI/CD pipelines for Ideogram integrations. Since Ideogram has no free tier for API testing, CI strategies focus on: mocked unit tests (free), optional integration tests gated behind secrets, and prompt validation without API calls.
Prerequisites
GitHub repository with Actions enabled
Ideogram API key for integration tests (optional)
npm/pnpm project with vitest
Instructions
Step 1: GitHub Actions Workflow
# .github/workflows/ideogram-ci.ymlname:IdeogramIntegrationCIon:push:branches: [main]
pull_request:branches: [main]
jobs:unit-tests:runs-on:ubuntu-lateststeps:-uses:actions/checkout@v4-uses:actions/setup-node@v4with:node-version:"20"cache:"npm"-run:npmci-run:npmtest----reporter=verbose-run:npmrunlint# Optional: runs only when secret is configured
integration-tests:
runs-on:
ubuntu-latest
if:
github.event_name
==
'push'
&&
github.ref
==
'refs/heads/main'
env:
IDEOGRAM_API_KEY:
${{
secrets.IDEOGRAM_API_KEY
}}
steps:
-
uses:
actions/checkout@v4
-
uses:
actions/setup-node@v4
with:
node-version:
"20"
cache:
"npm"
-
run:
npm
ci
-
name:
Run
integration
tests
if:
env.IDEOGRAM_API_KEY
!=
''
run:
npm
run
test:integration
timeout-minutes:
5
Step 2: Configure Secrets
set -euo pipefail
# Store Ideogram API key in GitHub repository secrets
gh secret set IDEOGRAM_API_KEY
# Verify it was set
gh secret list