Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ jobs:
npm i -g corepack@latest
corepack enable

- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
registry-url: "https://registry.npmjs.org"
cache: "pnpm"

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
npm i -g corepack@latest
corepack enable

- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: "pnpm"

- run: pnpm i
Expand All @@ -44,9 +44,9 @@ jobs:
corepack enable


- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: "pnpm"

- run: pnpm i
Expand All @@ -64,9 +64,9 @@ jobs:
npm i -g corepack@latest
corepack enable

- uses: actions/setup-node@v5
- uses: actions/setup-node@v6
with:
node-version: 22
node-version: 24
cache: "pnpm"

- run: pnpm i
Expand Down
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ This way even entityIds like environmentIds or testCaseIds will be autocompleted

# octomind

Octomind cli tool. Version: 4.0.0. Additional documentation see https://octomind.dev/docs/api-reference/
Octomind cli tool. Version: 4.1.0. Additional documentation see https://octomind.dev/docs/api-reference/

**Usage:** `octomind [options] [command]`

Expand Down Expand Up @@ -445,6 +445,20 @@ Push local YAML test cases to the test target
| `-j, --json` | Output raw JSON response | No | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |

## edit-test-case

Edit yaml test case

**Usage:** `edit-test-case [options]`

### Options

| Option | Description | Required | Default |
|:-------|:----------|:---------|:--------|
| `-j, --json` | Output raw JSON response | No | |
| `-t, --test-target-id [id]` | Test target ID, if not provided will use the test target id from the config | No | |
| `-f, --file-path <path>` | The path to the local yaml file you want to edit | Yes | |

## Test Reports

## test-report
Expand Down
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@octomind/octomind",
"version": "4.0.0",
"version": "4.1.0",
"description": "a command line client for octomind apis",
"main": "./dist/index.js",
"packageManager": "[email protected]+sha512.3b3f6c725ebe712506c0ab1ad4133cf86b1f4b687effce62a9b38b4d72e3954242e643190fc51fa1642949c735f403debd44f5cb0edd657abe63a8b6a7e1e402",
Expand Down Expand Up @@ -41,7 +41,10 @@
"@playwright/test": "1.57.0",
"@types/shell-quote": "1.7.5",
"commander": "14.0.2",
"diff": "8.0.3",
"open": "11.0.0",
"openapi-fetch": "0.15.0",
"ora": "9.0.0",
"otplib": "13.1.0",
"shell-quote": "1.8.3",
"simple-git": "3.30.0",
Expand Down
Loading