Skip to content

Commit 2947635

Browse files
authored
feat: stub some hooks for the MCP server (#1107)
1 parent 2ef14b4 commit 2947635

35 files changed

+3151
-2136
lines changed

.gitattributes

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

.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 [email protected]
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 [email protected]
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
strategy:
2222
matrix:
23-
os: [ubuntu-latest, windows-2019, macos-latest]
23+
os: [ubuntu-latest, windows-latest, macos-latest]
2424
fail-fast: false
2525

2626
runs-on: ${{ matrix.os }}
@@ -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)