Skip to content

Commit

Permalink
Merge pull request #7 from Luligu/dev
Browse files Browse the repository at this point in the history
Release 1.0.21
  • Loading branch information
Luligu authored Sep 23, 2024
2 parents 024e2d2 + aa217cb commit 6cd0973
Show file tree
Hide file tree
Showing 5 changed files with 149 additions and 125 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/build-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,12 @@ jobs:
with:
node-version: ${{ matrix.node-version }}

- name: Clean cache
run: npm cache clean --force

- name: Install latest npm
run: npm install -g npm@latest

- name: Verify Node.js version
run: node -v

Expand All @@ -31,7 +37,7 @@ jobs:
run: npm install -g matterbridge

- name: Install dependencies
run: npm install
run: npm ci

- name: Lint the project
run: npm run lint
Expand All @@ -42,14 +48,3 @@ jobs:
- name: Build the project
run: npm run build

# - name: List, audit, fix outdated dependencies and build again
# run: |
# npm uninstall matterbridge
# npm list --outdated
# npm audit || true # ignore failures
# npm audit fix || true
# npm list --outdated
# npm install -g matterbridge
# npm install
# npm run build

8 changes: 7 additions & 1 deletion .github/workflows/publish-matterbridge-plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
node-version: '20.x'
registry-url: 'https://registry.npmjs.org'

- name: Clean cache
run: npm cache clean --force

- name: Install latest npm
run: npm install -g npm@latest

- name: Verify Node.js version
run: node -v

Expand All @@ -28,7 +34,7 @@ jobs:
run: npm install -g matterbridge

- name: Install dependencies
run: npm install
run: npm ci

- name: Lint the project
run: npm run lint
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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

## [1.0.21] - 2024-09-23

### Changed

- [package]: Updated dependencies.

<a href="https://www.buymeacoffee.com/luligugithub">
<img src="./yellow-button.png" alt="Buy me a coffee" width="120">
</a>

## [1.0.20] - 2024-09-05

### Changed
Expand Down
Loading

0 comments on commit 6cd0973

Please sign in to comment.