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
10 changes: 8 additions & 2 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:

strategy:
matrix:
# We keep the matrix to ensure compatibility across active LTS versions
node-version: [18.x, 20.x, 22.x]

steps:
Expand All @@ -27,5 +28,10 @@ jobs:
- name: Install dependencies
run: npm ci

- name: Run tests
run: npm test
# 1. First, verify the TypeScript code actually compiles
- name: Type Check & Build
run: npx tsc

# 2. Run your new orchestrated test suite
- name: Run Integration Tests
run: npx tsx test/run-all-tests.ts
211 changes: 0 additions & 211 deletions cli/actions.js

This file was deleted.

69 changes: 0 additions & 69 deletions cli/index.js

This file was deleted.

87 changes: 0 additions & 87 deletions cli/utils.js

This file was deleted.

Loading
Loading