We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 656be37 commit 9b7a91bCopy full SHA for 9b7a91b
.github/workflows/build-test.yaml
@@ -1,4 +1,4 @@
1
-name: Publish Node SDK to npm
+name: Build and Test Node SDK
2
3
on:
4
pull_request:
src/api/Cycles.ts
@@ -68,9 +68,7 @@ export class Cycles extends BaseResource {
68
* Unarchive a cycle
69
*/
70
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
- );
+ return this.httpDelete(`/workspaces/${workspaceSlug}/projects/${projectId}/archived-cycles/${cycleId}/unarchive/`);
74
}
75
76
/**
0 commit comments