Skip to content

Commit

Permalink
fix(.github): Fix github action
Browse files Browse the repository at this point in the history
Signed-off-by: Diwank Singh Tomer <[email protected]>
  • Loading branch information
creatorrr committed Apr 16, 2024
1 parent 1fec67b commit 667c2bb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lint-and-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ jobs:
run: |
cd sdks/ts
npm ci
# npm run format
# npm run lint
npm run format
# npm run build
- uses: stefanzweifel/git-auto-commit-action@v4
with:
Expand Down
5 changes: 4 additions & 1 deletion sdks/ts/tests/sessions.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,10 @@ describe("Sessions API", () => {
});

it("sessions.update", async () => {
const response = await client.sessions.update(testSessionId, mockSessionUpdate);
const response = await client.sessions.update(
testSessionId,
mockSessionUpdate,
);

expect(response).toHaveProperty("updated_at");
});
Expand Down

0 comments on commit 667c2bb

Please sign in to comment.