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
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,8 @@ jobs:
vscode-test-${{ runner.os }}-
- run: xvfb-run -a npm run test:coverage
if: runner.os == 'Linux'
# On non-Linux, compile and run tests directly to skip the redundant lint
# (lint is OS-agnostic and already runs on Linux via test:coverage)
- run: npm run compile
if: runner.os != 'Linux'
# On non-Linux, run unit tests directly (test:unit already compiles)
# and skip lint (OS-agnostic; already run on Linux via test:coverage).
- run: npm run test:unit
if: runner.os != 'Linux'
- run: npm run test:vscode
Expand Down
Loading