Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: CI

on:
pull_request:
branches: [main]

jobs:
check:
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 typecheck
- run: npm run format:check
- run: npm test
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,11 @@ logs/
.idea/
.vscode/

# Test coverage
coverage/

# OMC state
.omc/

agents-sdk-docs
docs/learnfromproject.md
4 changes: 3 additions & 1 deletion src/__tests__/config.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,9 @@ describe('config.ts', () => {
it('should be an array of strings', () => {
expect(Array.isArray(ALLOWED_CONTAINER_ENV_KEYS)).toBe(true);
expect(ALLOWED_CONTAINER_ENV_KEYS.length).toBeGreaterThan(0);
expect(ALLOWED_CONTAINER_ENV_KEYS.every((k) => typeof k === 'string')).toBe(true);
expect(
ALLOWED_CONTAINER_ENV_KEYS.every((k) => typeof k === 'string'),
).toBe(true);
});

it('should include critical environment variables', () => {
Expand Down
Loading
Loading