Skip to content

Commit 6cd0973

Browse files
authored
Merge pull request #7 from Luligu/dev
Release 1.0.21
2 parents 024e2d2 + aa217cb commit 6cd0973

5 files changed

+149
-125
lines changed

.github/workflows/build-matterbridge-plugin.yml

+7-12
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ jobs:
2121
with:
2222
node-version: ${{ matrix.node-version }}
2323

24+
- name: Clean cache
25+
run: npm cache clean --force
26+
27+
- name: Install latest npm
28+
run: npm install -g npm@latest
29+
2430
- name: Verify Node.js version
2531
run: node -v
2632

@@ -31,7 +37,7 @@ jobs:
3137
run: npm install -g matterbridge
3238

3339
- name: Install dependencies
34-
run: npm install
40+
run: npm ci
3541

3642
- name: Lint the project
3743
run: npm run lint
@@ -42,14 +48,3 @@ jobs:
4248
- name: Build the project
4349
run: npm run build
4450

45-
# - name: List, audit, fix outdated dependencies and build again
46-
# run: |
47-
# npm uninstall matterbridge
48-
# npm list --outdated
49-
# npm audit || true # ignore failures
50-
# npm audit fix || true
51-
# npm list --outdated
52-
# npm install -g matterbridge
53-
# npm install
54-
# npm run build
55-

.github/workflows/publish-matterbridge-plugin.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,12 @@ jobs:
1818
node-version: '20.x'
1919
registry-url: 'https://registry.npmjs.org'
2020

21+
- name: Clean cache
22+
run: npm cache clean --force
23+
24+
- name: Install latest npm
25+
run: npm install -g npm@latest
26+
2127
- name: Verify Node.js version
2228
run: node -v
2329

@@ -28,7 +34,7 @@ jobs:
2834
run: npm install -g matterbridge
2935

3036
- name: Install dependencies
31-
run: npm install
37+
run: npm ci
3238

3339
- name: Lint the project
3440
run: npm run lint

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
All notable changes to this project will be documented in this file.
44

5+
## [1.0.21] - 2024-09-23
6+
7+
### Changed
8+
9+
- [package]: Updated dependencies.
10+
11+
<a href="https://www.buymeacoffee.com/luligugithub">
12+
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
13+
</a>
14+
515
## [1.0.20] - 2024-09-05
616

717
### Changed

0 commit comments

Comments
 (0)