local-operator-ui 0.1.0-beta.1 → 0.1.0-beta.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -104,6 +104,10 @@ The project follows a modular architecture with clear separation of concerns:
104
104
 
105
105
  ```
106
106
  local-operator-ui/
107
+ ├── .github/ # GitHub configuration
108
+ │ └── workflows/ # GitHub Actions workflows
109
+ │ ├── ci.yml # CI workflow configuration
110
+ │ └── release.yml # Release workflow configuration
107
111
  ├── resources/ # Application resources (icons, images)
108
112
  ├── src/ # Source code
109
113
  │ ├── main/ # Electron main process
@@ -143,6 +147,7 @@ local-operator-ui/
143
147
  ├── biome.json # Biome configuration
144
148
  ├── electron.vite.config.js # Electron Vite configuration
145
149
  ├── eslint.config.js # ESLint configuration
150
+ ├── GITHUB_ACTIONS.md # GitHub Actions documentation
146
151
  ├── package.json # Project dependencies and scripts
147
152
  ├── tsconfig.json # TypeScript configuration
148
153
  └── README.md # Project documentation
@@ -227,6 +232,15 @@ The project uses Jest for testing. To run tests:
227
232
  yarn test
228
233
  ```
229
234
 
235
+ ## 🔄 Continuous Integration and Deployment
236
+
237
+ This project uses GitHub Actions for continuous integration and automated publishing to npm. The workflows include:
238
+
239
+ - **CI**: Runs Biome linting and security audits on pushes to `main` and `dev-*` branches
240
+ - **Release**: Automatically publishes the package to npm when a new GitHub Release is created
241
+
242
+ For detailed information on setting up and using these workflows, see [GITHUB_ACTIONS.md](./GITHUB_ACTIONS.md).
243
+
230
244
  ## 🔧 Linting and Formatting
231
245
 
232
246
  The project uses Biome for linting and formatting. To lint and format the code:
Binary file
Binary file