Skip to content
Merged
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
7 changes: 7 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,19 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Security audit
run: npm audit --audit-level=moderate
continue-on-error: true

- name: Lint
run: npm run lint

- name: Build
run: npm run build

- name: Verify build output
run: test -f dist/cli.js && echo "dist/cli.js exists" || (echo "Build did not produce dist/cli.js" && exit 1)

- name: Check types
run: npx tsc --noEmit

Expand Down
Loading