chore: update command for ci...

This commit is contained in:
Lluis Agusti
2025-06-25 20:21:25 +04:00
parent 1ed1af8ca0
commit cb9fda0f1d
3 changed files with 3 additions and 3 deletions

View File

@@ -88,7 +88,7 @@ jobs:
onlyChanged: true
workingDir: autogpt_platform/frontend
token: ${{ secrets.GITHUB_TOKEN }}
buildScriptName: pnpm storybook build
buildScriptName: storybook:build
test-unit:
runs-on: ubuntu-latest

View File

@@ -98,7 +98,7 @@ Storybook is a powerful development environment for UI components. It allows you
To build a static version of Storybook for deployment, use:
```bash
pnpm build:storybook
pnpm storybook:build
```
3. **Writing Stories**:

View File

@@ -17,7 +17,7 @@
"test:unit:watch": "vitest --config vitest.config.mjs --watch",
"gentests": "playwright codegen http://localhost:3000",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build",
"storybook:build": "storybook build",
"fetch:openapi": "curl http://localhost:8006/openapi.json > ./src/api/openapi.json && prettier --write ./src/api/openapi.json",
"generate:api-client": "orval --config ./orval.config.ts",
"generate:api-all": "pnpm run fetch:openapi && pnpm run generate:api-client"