Skip to content

Commit 9b7a91b

Browse files
chore: build errors
1 parent 656be37 commit 9b7a91b

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/build-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Publish Node SDK to npm
1+
name: Build and Test Node SDK
22

33
on:
44
pull_request:

src/api/Cycles.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,7 @@ export class Cycles extends BaseResource {
6868
* Unarchive a cycle
6969
*/
7070
async unArchive(workspaceSlug: string, projectId: string, cycleId: string): Promise<void> {
71-
return this.httpDelete<void>(
72-
`/workspaces/${workspaceSlug}/projects/${projectId}/archived-cycles/${cycleId}/unarchive/`
73-
);
71+
return this.httpDelete(`/workspaces/${workspaceSlug}/projects/${projectId}/archived-cycles/${cycleId}/unarchive/`);
7472
}
7573

7674
/**

0 commit comments

Comments
 (0)