@linagora/linid-im-front-corelib 0.0.3 → 0.0.5

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.
@@ -120,3 +120,28 @@ jobs:
120
120
  - uses: gensecaihq/Shai-Hulud-2.0-Detector@v1
121
121
  with:
122
122
  fail-on-critical: true
123
+
124
+ unit-tests:
125
+ name: Unit tests
126
+ runs-on: ubuntu-latest
127
+ needs: [build]
128
+ steps:
129
+ - uses: actions/checkout@v4
130
+
131
+ - name: Setup Node.js and pnpm
132
+ uses: ./.github/actions/setup-node-pnpm
133
+ with:
134
+ node-version: ${{ env.NODE_VERSION }}
135
+ pnpm-version: ${{ env.PNPM_VERSION }}
136
+
137
+ - name: Run unit tests
138
+ run: |
139
+ echo '```bash' > coverage.txt
140
+ pnpm test:ci | sed 's/\x1b\[[0-9;]*m//g' >> coverage.txt
141
+ echo '```' >> coverage.txt
142
+
143
+ - name: Comment PR
144
+ uses: JoseThen/comment-pr@v1.2.0
145
+ with:
146
+ file_path: ./coverage.txt
147
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.0.5](https://github.com/linagora/linid-im-front-corelib/compare/v0.0.4...v0.0.5) (2025-12-03)
6
+
7
+ ### [0.0.4](https://github.com/linagora/linid-im-front-corelib/compare/v0.0.3...v0.0.4) (2025-12-01)
8
+
9
+
10
+ ### Features
11
+
12
+ * add lifecycle in RemoteModule and remove app usage ([04d0163](https://github.com/linagora/linid-im-front-corelib/commit/04d01635a3711168daa50c58e7a0c6dba7abdeaa))
13
+
5
14
  ### [0.0.3](https://github.com/linagora/linid-im-front-corelib/compare/v0.0.2...v0.0.3) (2025-11-28)
6
15
 
7
16
 
package/CONTRIBUTING.md CHANGED
@@ -161,9 +161,14 @@ npm run dev
161
161
  ## **🧪 Run Tests**
162
162
 
163
163
  ```sh
164
- pnpm test
164
+ pnpm test # Runs the full test suite once
165
+ pnpm test:watch # Runs tests in watch mode
166
+ pnpm test:coverage # Generates a coverage report
167
+
165
168
  # or (not recommended by the dev team)
166
- npm run test
169
+ npm run test # Runs the full test suite once
170
+ npm run test:watch # Runs tests in watch mode
171
+ npm run test:coverage # Generates a coverage report
167
172
  ```
168
173
 
169
174
  ---