Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
88450d2
fix: send relative unix-format path in mutation test params
Dec 5, 2025
cba8dde
refactor: use vscode utils
Dec 5, 2025
a1f228e
feat: use shell based use of win32 platform
jaspervdveen Dec 5, 2025
84304cd
ci: windows
Dec 5, 2025
cf46046
lint: fix format
jaspervdveen Dec 5, 2025
df2d79c
fix: test
jaspervdveen Dec 5, 2025
5dcc1b0
build: set fail fast to false
jaspervdveen Dec 5, 2025
e5371f2
lint: fix format
jaspervdveen Dec 5, 2025
c8440e2
fix: run tests on windows os
jaspervdveen Dec 5, 2025
12f683f
fix: update CI configuration for Windows testing
jaspervdveen Dec 5, 2025
214996e
fix: simplify ci
jaspervdveen Dec 5, 2025
e458935
fix(test-item-utils): use path instead of fspath in lstatSync
Dec 19, 2025
68d8ac6
lint: run format
Dec 19, 2025
01b8ff9
fix: config change are undetected when workspace folder init fails
Dec 19, 2025
be06488
tests(windows): update path handling to improve cross-platform compat…
Dec 19, 2025
591db00
lint: run format:fix script
Dec 19, 2025
a711b22
tests(windows): fix tests
Dec 19, 2025
21a9330
test(stdio-transport): remove redundant connection log assertion
Dec 19, 2025
761fcb5
fix: use fsPath in lstatSync directory check
Dec 19, 2025
3186f26
fix(tests): update path handling for cross-platform compatibility
Dec 19, 2025
8eeaf17
lint: format code
Dec 19, 2025
7728829
tests: replace expect assertions with sinon assertions
Dec 19, 2025
4c3427e
fix: resolve path to handle ../ paths in server path config
Dec 19, 2025
f8c48d8
lint: format code
Dec 19, 2025
2fe7cda
fix: improve Windows support for server path resolution and test exec…
jaspervdveen Jan 15, 2026
98b83b3
lint: formatting
jaspervdveen Jan 15, 2026
376be79
Merge remote-tracking branch 'origin/main' into fix/windows-support
jaspervdveen Jan 15, 2026
7683786
fix: remove fail-fast option from CI job strategy
jaspervdveen Jan 15, 2026
5771ca4
test: change logging message to include resolved server path in integ…
jaspervdveen Jan 16, 2026
f7de22d
fix: remove console logs
jaspervdveen Jan 16, 2026
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
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ on:

jobs:
build_and_test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
Expand All @@ -19,4 +22,8 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Build & lint & test
if: runner.os == 'Windows'
run: npm run all
- name: Build & lint & test (linux)
if: runner.os != 'Windows'
run: xvfb-run -a npm run all
Loading