Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 1.0.21 #7

Merged
merged 2 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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