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
6 changes: 3 additions & 3 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
registry-url: https://registry.npmjs.org/
cache: "pnpm"

Expand All @@ -35,7 +35,7 @@ jobs:

- name: Deploy server
run: bash scripts/release-server.sh


- name: Deploy VS Code extension
run: bash scripts/release-client.sh
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/upgrade-tree-sitter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- uses: actions/setup-node@v4
with:
node-version: 20
node-version: 22
cache: "pnpm"

- run: pnpm install --frozen-lockfile
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

strategy:
matrix:
node-version: [18.x, 20.x]
node-version: [20.x, 22.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -19,7 +19,7 @@ jobs:

- uses: pnpm/action-setup@v4
with:
version: 9
version: 10

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
Expand All @@ -34,7 +34,7 @@ jobs:

- name: Publish coverage to codecov.io
uses: codecov/codecov-action@v5
if: success() && matrix.node-version == '20.x'
if: success() && matrix.node-version == '22.x'
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./codecov.yml
3 changes: 2 additions & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
nodejs 18.20.8
nodejs 22.16.0
pnpm 10.12.1
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To verify that everything is working:
bash-language-server --help
```

If you encounter installation errors, ensure you have node version 16 or newer (`node --version`).
If you encounter installation errors, ensure you have node version 20 or newer (`node --version`).

### Clients

Expand Down
2 changes: 1 addition & 1 deletion docs/development-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ convenience - it proxies to the `package.json` files in the `vscode-client` and
This guide presumes you have the following dependencies installed:

- [`pnpm`][pnpm].
- [`node`][node] (v16 or newer)
- [`node`][node] (v20 or newer)

## Initial setup

Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
},
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "18.19.130",
"@types/node": "22.15.29",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"cross-spawn": ">=7.0.5",
Expand All @@ -39,8 +39,8 @@
"@types/vscode": "1.106.1"
},
"engines": {
"node": ">=16",
"pnpm": ">=9.x"
"node": ">=20",
"pnpm": ">=10"
},
"jest": {
"preset": "ts-jest",
Expand Down
Loading
Loading