Skip to content

Commit ebc0780

Browse files
committed
Add syncpack lint job
1 parent 32b482e commit ebc0780

File tree

13 files changed

+130
-78
lines changed

13 files changed

+130
-78
lines changed

.github/workflows/test-and-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
cache: 'pnpm'
2222
- name: Install dependencies
2323
run: pnpm install
24+
- name: Syncpack lint
25+
run: pnpm syncpack lint
2426
- name: Run linter
2527
run: pnpm check:turbo
2628
- name: Run linter (formatting)

.syncpackrc.cjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ const config = {
1414
{
1515
label: 'Sentry types that are compatible with toucan-js',
1616
dependencies: ['@sentry/types', '@sentry/tracing'],
17-
pinVersion: '7.76.0',
17+
pinVersion: '8.9.2',
1818
},
1919
{
2020
label: 'toucan-js that is compatible with pinned sentry types',
2121
dependencies: ['toucan-js'],
22-
pinVersion: '3.3.1',
22+
pinVersion: '4.1.1',
2323
},
2424
{
2525
label: 'pin vitest compatible with @cloudflare/vitest-pool-workers',

apps/docs-autorag/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"test": "vitest run"
1313
},
1414
"dependencies": {
15-
"@cloudflare/workers-oauth-provider": "0.0.2",
15+
"@cloudflare/workers-oauth-provider": "0.0.3",
1616
"@hono/zod-validator": "0.4.3",
17-
"@modelcontextprotocol/sdk": "1.9.0",
17+
"@modelcontextprotocol/sdk": "1.10.2",
1818
"@repo/mcp-common": "workspace:*",
1919
"@repo/mcp-observability": "workspace:*",
20-
"agents": "0.0.62",
20+
"agents": "0.0.67",
2121
"cloudflare": "4.2.0",
2222
"hono": "4.7.6",
2323
"mime": "4.0.6",

apps/sandbox-container/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,16 +18,16 @@
1818
"eval:ci": "start-server-and-test --expect 404 eval:server http://localhost:8976 'vitest run --testTimeout=60000 --config vitest.config.evals.ts'"
1919
},
2020
"dependencies": {
21-
"@cloudflare/workers-oauth-provider": "0.0.2",
21+
"@cloudflare/workers-oauth-provider": "0.0.3",
2222
"@hono/node-server": "1.13.8",
2323
"@hono/zod-validator": "0.4.3",
24-
"@modelcontextprotocol/sdk": "1.9.0",
24+
"@modelcontextprotocol/sdk": "1.10.2",
2525
"@n8n/json-schema-to-zod": "1.1.0",
2626
"@repo/eval-tools": "workspace:*",
2727
"@repo/mcp-common": "workspace:*",
2828
"@repo/mcp-observability": "workspace:*",
2929
"@types/node": "22.14.1",
30-
"agents": "0.0.62",
30+
"agents": "0.0.67",
3131
"cron-schedule": "5.0.4",
3232
"esbuild": "0.25.1",
3333
"hono": "4.7.6",

apps/sandbox-container/server/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ export default {
6161

6262
return new OAuthProvider({
6363
apiRoute: '/sse',
64-
// @ts-ignore
6564
apiHandler: ContainerMcpAgent.mount('/sse', { binding: 'CONTAINER_MCP_AGENT' }),
6665
// @ts-ignore
6766
defaultHandler: createAuthHandlers({ scopes: ContainerScopes, metrics }),

apps/workers-bindings/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222
"wrangler": "4.10.0"
2323
},
2424
"dependencies": {
25-
"@cloudflare/workers-oauth-provider": "0.0.2",
26-
"@modelcontextprotocol/sdk": "1.9.0",
25+
"@cloudflare/workers-oauth-provider": "0.0.3",
26+
"@modelcontextprotocol/sdk": "1.10.2",
2727
"@n8n/json-schema-to-zod": "1.1.0",
2828
"@repo/mcp-common": "workspace:*",
2929
"@repo/mcp-observability": "workspace:*",
30-
"agents": "0.0.62",
30+
"agents": "0.0.67",
3131
"hono": "4.7.6",
3232
"zod": "3.24.2"
3333
}

apps/workers-bindings/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,6 @@ const BindingsScopes = {
107107
// Export the OAuth handler as the default
108108
export default new OAuthProvider({
109109
apiRoute: '/sse',
110-
// @ts-ignore
111110
apiHandler: WorkersBindingsMCP.mount('/sse'),
112111
// @ts-ignore
113112
defaultHandler: createAuthHandlers({ scopes: BindingsScopes, metrics }),

apps/workers-observability/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"test": "vitest run"
1313
},
1414
"dependencies": {
15-
"@cloudflare/workers-oauth-provider": "0.0.2",
15+
"@cloudflare/workers-oauth-provider": "0.0.3",
1616
"@hono/zod-validator": "0.4.3",
17-
"@modelcontextprotocol/sdk": "1.9.0",
17+
"@modelcontextprotocol/sdk": "1.10.2",
1818
"@repo/mcp-common": "workspace:*",
1919
"@repo/mcp-observability": "workspace:*",
20-
"agents": "0.0.62",
20+
"agents": "0.0.67",
2121
"cloudflare": "4.2.0",
2222
"hono": "4.7.6",
2323
"zod": "3.24.2"

apps/workers-observability/src/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ const ObservabilityScopes = {
106106

107107
export default new OAuthProvider({
108108
apiRoute: '/sse',
109-
// @ts-ignore
110109
apiHandler: ObservabilityMCP.mount('/sse'),
111110
// @ts-ignore
112111
defaultHandler: createAuthHandlers({ scopes: ObservabilityScopes, metrics }),

package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,5 @@
5252
"overrides": {
5353
"esbuild": "0.25.1"
5454
}
55-
},
56-
"dependencies": {
57-
"workers-observability": "link:apps/workers-observability"
5855
}
5956
}

0 commit comments

Comments
 (0)