Skip to content

Commit bb01203

Browse files
lint fixes
1 parent bbed7cf commit bb01203

5 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,7 @@ jobs:
187187
working-directory: ${{ runner.temp }}
188188

189189
- name: Compile code
190-
# Temporary measure to work around PNPM installs of local packages
191-
run: pnpm --recursive --stream --filter '!@temporalio/core-bridge' --filter '!typescript-sdk' run build && pnpm install --frozen-lockfile
190+
run: pnpm --recursive --stream --filter '!@temporalio/core-bridge' --filter '!typescript-sdk' run build
192191

193192
- name: Publish to Verdaccio
194193
run: pnpm tsx scripts/publish-to-verdaccio.ts --registry-dir ${{ steps.tmp-dir.outputs.dir }}/npm-registry

packages/ai-sdk/src/__tests__/workflows/ai-sdk.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,9 +126,8 @@ export async function mcpSchemaTestWorkflow(): Promise<{
126126
const mcpClient = new TemporalMCPClient({ name: 'testServer' });
127127
const tools = await mcpClient.tools();
128128

129-
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
130129
const [toolName, tool] = Object.entries(tools)[0]!;
131-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
130+
132131
const schema = (tool as any).inputSchema.jsonSchema;
133132

134133
return {

packages/interceptors-opentelemetry/src/__tests__/workflows/definitions.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/* eslint-disable no-duplicate-imports */
21
import { defineQuery, defineSignal } from '@temporalio/workflow';
32

43
export const activityStartedSignal = defineSignal('activityStarted');

packages/test-helpers/src/environment.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@ import {
22
LocalTestWorkflowEnvironmentOptions,
33
workflowInterceptorModules as defaultWorkflowInterceptorModules,
44
} from '@temporalio/testing';
5-
import { bundleWorkflowCode, BundlerPlugin, DefaultLogger, WorkflowBundleWithSourceMap, BundleOptions } from '@temporalio/worker';
5+
import {
6+
bundleWorkflowCode,
7+
BundlerPlugin,
8+
DefaultLogger,
9+
WorkflowBundleWithSourceMap,
10+
BundleOptions,
11+
} from '@temporalio/worker';
612
import { defineSearchAttributeKey, SearchAttributeType } from '@temporalio/common/lib/search-attributes';
713
import { TestWorkflowEnvironment } from './wrappers';
814
import { baseBundlerIgnoreModules } from './bundler';

packages/test-helpers/src/wrappers.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ if (inWorkflowContext()) {
1717

1818
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
1919
// @ts-ignore
20-
RealTestWorkflowEnvironment = class {}; // eslint-disable-line import/namespace
20+
RealTestWorkflowEnvironment = class {};
2121
}
2222

2323
/**

0 commit comments

Comments
 (0)