-
Notifications
You must be signed in to change notification settings - Fork 75
142 lines (135 loc) · 4.48 KB
/
Copy pathtest.yml
File metadata and controls
142 lines (135 loc) · 4.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
name: Test
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm typecheck
- run: pnpm test
agents:
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
id-token: write
strategy:
fail-fast: true
matrix:
agent: [claude, codex, opencode]
test:
[
bedrock-claude,
codex-auth,
fs-exfil,
gitwrite,
mcpmerge,
nobash,
restricted,
skill-invoke-claude,
skill-invoke-opencode,
smoke,
token-exfil,
# vertex-claude, # disabled: 0 anthropic quota on pullfrog GCP vertex
vertex-opencode,
]
exclude:
- agent: opencode
test: bedrock-claude
- agent: codex
test: bedrock-claude
- agent: claude
test: skill-invoke-opencode
- agent: codex
test: skill-invoke-opencode
- agent: claude
test: codex-auth
- agent: opencode
test: skill-invoke-claude
- agent: codex
test: skill-invoke-claude
- agent: claude
test: vertex-opencode
- agent: codex
test: vertex-opencode
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
CLAUDE_CODE_OAUTH_TOKEN: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }}
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}
GOOGLE_GENERATIVE_AI_API_KEY: ${{ secrets.GOOGLE_GENERATIVE_AI_API_KEY }}
GEMINI_API_KEY: ${{ secrets.GEMINI_API_KEY }}
XAI_API_KEY: ${{ secrets.XAI_API_KEY }}
DEEPSEEK_API_KEY: ${{ secrets.DEEPSEEK_API_KEY }}
OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }}
AI_GATEWAY_API_KEY: ${{ secrets.AI_GATEWAY_API_KEY }}
MOONSHOT_API_KEY: ${{ secrets.MOONSHOT_API_KEY }}
KIMI_API_KEY: ${{ secrets.KIMI_API_KEY }}
META_MODEL_API_KEY: ${{ secrets.META_MODEL_API_KEY }}
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
AWS_BEARER_TOKEN_BEDROCK: ${{ secrets.AWS_BEARER_TOKEN_BEDROCK }}
AWS_REGION: us-east-1
BEDROCK_MODEL_ID: us.anthropic.claude-sonnet-4-6
VERTEX_SERVICE_ACCOUNT_JSON: ${{ secrets.VERTEX_SERVICE_ACCOUNT_JSON }}
GOOGLE_CLOUD_PROJECT: pullfrog
VERTEX_LOCATION: global
VERTEX_MODEL_ID: gemini-2.5-flash
PULLFROG_MODEL: ${{ vars.PULLFROG_MODEL }}
# CI smoke-testing shortcut only — production stores this in Pullfrog's
# per-org secret store (Postgres), set via `pullfrog auth codex`. GH
# Actions secrets are immutable at runtime so the post-hook can't write
# back the rotated refresh token; CI accepts the staleness and we
# manually re-provision when smoke tests start failing. Do not copy this
# pattern into user-facing workflows. See wiki/codex-auth.md.
CODEX_AUTH_JSON: ${{ secrets.CODEX_AUTH_JSON }}
# Same CI-shortcut caveat, and staler sooner — Grok access tokens live
# ~6h. Production path is `pullfrog auth grok`. See wiki/grok-auth.md.
GROK_AUTH_JSON: ${{ secrets.GROK_AUTH_JSON }}
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm runtest ${{ matrix.test }} ${{ matrix.agent }}
agnostic:
runs-on: ubuntu-latest
timeout-minutes: 15
permissions:
contents: read
id-token: write
strategy:
fail-fast: true
matrix:
test:
[
byok-missing-key-error,
git-permissions,
githooks,
pkg-json-scripts,
push-disabled,
push-enabled,
push-restricted,
timeout,
]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }}
steps:
- uses: actions/checkout@v6
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm runtest ${{ matrix.test }}