Skip to content

Commit e0277e3

Browse files
brianfunkclaude
andcommitted
fix: run coverage only on Node 20+ (inspector/promises not in Node 18)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e2c4a53 commit e0277e3

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ jobs:
1515
node-version: ${{ matrix.node }}
1616
- run: npm ci
1717
- run: npm run lint
18-
- run: npm run test:coverage
18+
- name: Run tests
19+
if: matrix.node == 18
20+
run: npm test
21+
- name: Run tests with coverage
22+
if: matrix.node != 18
23+
run: npm run test:coverage

0 commit comments

Comments
 (0)