Skip to content

Commit f54a0fa

Browse files
fmt + fix build
1 parent 9efd353 commit f54a0fa

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
registry-url: "https://registry.npmjs.org"
2525
- run: npm run clean
2626
- run: npm ci
27+
- run: npm run build
2728
- run: npm run verify
2829
- run: npm pack --workspaces true --include-workspace-root false
2930
- run: find -type f -name "restatedev-restate-sdk-[0-9.]*\.tgz" | xargs -I {} mv {} restatedev-restate-sdk.tgz

packages/restate-sdk/src/context_impl.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -731,9 +731,7 @@ export class ContextImpl implements ObjectContext, WorkflowContext {
731731
}
732732

733733
// eslint-disable-next-line @typescript-eslint/no-misused-promises
734-
return new Promise<void>((resolve) =>
735-
this.currentRead?.finally(resolve)
736-
);
734+
return new Promise<void>((resolve) => this.currentRead?.finally(resolve));
737735
}
738736

739737
private async readNext(): Promise<void> {

0 commit comments

Comments
 (0)