Skip to content

Commit 46c1b70

Browse files
feat: integrate MongoDB MCP server with VSCode extension MCP-129 (#1115)
1 parent af1d30c commit 46c1b70

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

49 files changed

+6112
-2585
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock.json linguist-generated

.github/workflows/actions/test-and-build/action.yaml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,6 @@ runs:
5454
fi
5555
shell: bash
5656

57-
- name: Install npm
58-
run: npm install -g npm@8.19.4
59-
shell: bash
60-
6157
- name: Install Dependencies
6258
shell: bash
6359
run: |

.github/workflows/draft-release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ jobs:
4040
- name: Setup Node.js Environment
4141
uses: actions/setup-node@v4
4242
with:
43-
node-version: 20.16.0
43+
node-version: 22.15.1
44+
cache: npm
4445

4546
- name: Determine Next Version
4647
shell: bash

.github/workflows/publish-release.yaml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ jobs:
1515
- name: Setup Node.js Environment
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: 20.16.0
19-
20-
- name: Install npm
21-
run: npm install -g npm@8.19.4
18+
node-version: 22.15.1
19+
cache: npm
2220

2321
- name: Run node-gyp bug workaround script
2422
run: |

.github/workflows/test-and-build-from-fork.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ jobs:
3030
- name: Setup Node.js Environment
3131
uses: actions/setup-node@v4
3232
with:
33-
node-version: 20.16.0
33+
node-version: 22.15.1
34+
cache: npm
3435

3536
- name: Install Dependencies
3637
run: npm ci --omit=optional

.github/workflows/test-and-build.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ jobs:
3434
- name: Setup Node.js Environment
3535
uses: actions/setup-node@v4
3636
with:
37-
node-version: 20.16.0
37+
node-version: 22.15.1
38+
cache: npm
3839

3940
- name: Run tests and build
4041
uses: ./.github/workflows/actions/test-and-build

0 commit comments

Comments
 (0)