Configure Gamma CI/CD integration with GitHub Actions and testing. Use when setting up automated testing, configuring CI pipelines, or integrating Gamma tests into your build process. Trigger with phrases like "gamma CI", "gamma GitHub Actions", "gamma automated tests", "CI gamma", "gamma pipeline".
From gamma-packnpx claudepluginhub nickloveinvesting/nick-love-plugins --plugin gamma-packThis skill is limited to using the following tools:
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Migrates code, prompts, and API calls from Claude Sonnet 4.0/4.5 or Opus 4.1 to Opus 4.5, updating model strings on Anthropic, AWS, GCP, Azure platforms.
Details PluginEval's skill quality evaluation: 3 layers (static, LLM judge), 10 dimensions, rubrics, formulas, anti-patterns, badges. Use to interpret scores, improve triggering, calibrate thresholds.
Set up continuous integration for Gamma-powered applications with automated testing and deployment.
# .github/workflows/gamma-ci.yml
name: Gamma CI
on:
push:
branches: [main, develop]
pull_request:
branches: [main]
env:
GAMMA_API_KEY: ${{ secrets.GAMMA_API_KEY }}
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run unit tests
run: npm test
- name: Run Gamma integration tests
run: npm run test:gamma
env:
GAMMA_MOCK: ${{ github.event_name == 'pull_request' }}
- name: Upload coverage
uses: codecov/codecov-action@v4
with:
files: ./coverage/lcov.info
// package.json
{
"scripts": {
"test": "vitest run",
"test:gamma": "vitest run --config vitest.gamma.config.ts",
"test:gamma:live": "GAMMA_MOCK=false vitest run --config vitest.gamma.config.ts"
}
}
// vitest.gamma.config.ts
import { defineConfig } from 'vitest/config';
export default defineConfig({
test: {
include: ['tests/gamma/**/*.test.ts'],
testTimeout: 60000, // Gamma API can be slow # 60000: 1 minute in ms
hookTimeout: 30000, # 30000: 30 seconds in ms
setupFiles: ['./tests/gamma/setup.ts'],
},
});
// tests/gamma/setup.ts
import { beforeAll, afterAll } from 'vitest';
import { GammaClient } from '@gamma/sdk';
const useMock = process.env.GAMMA_MOCK === 'true';
export let gamma: GammaClient;
beforeAll(() => {
if (useMock) {
gamma = createMockGammaClient();
} else {
gamma = new GammaClient({
apiKey: process.env.GAMMA_API_KEY,
});
}
});
function createMockGammaClient() {
return {
presentations: {
create: vi.fn().mockResolvedValue({
id: 'mock-id',
url: 'https://gamma.app/mock/test',
title: 'Mock Presentation',
}),
list: vi.fn().mockResolvedValue([]),
get: vi.fn().mockResolvedValue({ id: 'mock-id' }),
},
ping: vi.fn().mockResolvedValue({ ok: true }),
} as unknown as GammaClient;
}
// tests/gamma/presentation.test.ts
import { describe, it, expect } from 'vitest';
import { gamma } from './setup';
describe('Gamma Presentations', () => {
it('should create a presentation', async () => {
const result = await gamma.presentations.create({
title: 'CI Test Presentation',
prompt: 'Test slide for CI',
slideCount: 1,
});
expect(result.id).toBeDefined();
expect(result.url).toContain('gamma.app');
});
it('should list presentations', async () => {
const presentations = await gamma.presentations.list({ limit: 5 });
expect(Array.isArray(presentations)).toBe(true);
});
});
# Using GitHub CLI
gh secret set GAMMA_API_KEY --body "your-test-api-key"
# Verify secrets
gh secret list
| Error | Cause | Solution |
|---|---|---|
| Secret not found | Missing GitHub secret | Add GAMMA_API_KEY secret |
| Test timeout | Slow API response | Increase testTimeout |
| Mock mismatch | Mock out of sync | Update mock responses |
| Rate limit in CI | Too many test runs | Use mock mode for PRs |
Proceed to gamma-deploy-integration for deployment workflows.
Basic usage: Apply gamma ci integration to a standard project setup with default configuration options.
Advanced scenario: Customize gamma ci integration for production environments with multiple constraints and team-specific requirements.