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

Update depencencies, update testing and remove legacy code form main #20

Merged
merged 19 commits into from
Apr 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
19 commits
Select commit Hold shift + click to select a range
aea68e8
chore(deps): bump actions/checkout from 2 to 4
dependabot[bot] Apr 24, 2024
bc0a5c1
chore(deps): bump @iobroker/adapter-core from 3.0.4 to 3.1.4
dependabot[bot] Apr 24, 2024
6367a46
chore(deps-dev): bump @iobroker/testing from 4.1.0 to 4.1.3
dependabot[bot] Apr 24, 2024
8607a09
chore(deps-dev): bump mocha from 10.3.0 to 10.4.0
dependabot[bot] Apr 24, 2024
cd27fe8
chore(deps-dev): bump typescript from 5.0.4 to 5.4.5
dependabot[bot] Apr 24, 2024
50fe4c4
Merge pull request #4 from mcm1957/dependabot/npm_and_yarn/iobroker/t…
mcm1957 Apr 24, 2024
2600f67
Merge pull request #2 from mcm1957/dependabot/npm_and_yarn/iobroker/a…
mcm1957 Apr 24, 2024
b0267b8
Merge pull request #1 from mcm1957/dependabot/github_actions/actions/…
mcm1957 Apr 24, 2024
fadf039
Merge pull request #7 from mcm1957/dependabot/npm_and_yarn/typescript…
mcm1957 Apr 24, 2024
53fd277
chore(deps-dev): bump @tsconfig/node16 from 16.1.1 to 16.1.3
dependabot[bot] Apr 24, 2024
07e21a9
Merge pull request #6 from mcm1957/dependabot/npm_and_yarn/mocha-10.4.0
mcm1957 Apr 24, 2024
4c8acb0
Merge pull request #5 from mcm1957/dependabot/npm_and_yarn/tsconfig/n…
mcm1957 Apr 24, 2024
5928ca3
update testing and dependencies
mcm1957 Apr 24, 2024
737a09f
ignore tests scripts at eslint
mcm1957 Apr 24, 2024
8765574
linter errors fixed
mcm1957 Apr 24, 2024
195d062
Update test-and-release.yml
mcm1957 Apr 24, 2024
be7ea5e
Update test-and-release.yml - revert
mcm1957 Apr 24, 2024
82c4637
Replaced utils.adapter by this usage
mcm1957 Apr 24, 2024
ca7489f
Merge branch 'main' of https://github.com/mcm1957/ioBroker.notificati…
mcm1957 Apr 24, 2024
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
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
**/.eslintrc.js
admin/words.js
admin/words.js
test/*.js
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Check if PR should be auto-merged
uses: ahmadnassri/action-dependabot-auto-merge@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- uses: ioBroker/testing-action-check@v1
with:
node-version: '18.x'
node-version: '20.x'
# Uncomment the following line if your adapter cannot be installed using 'npm ci'
# install-command: 'npm install'
lint: true
Expand All @@ -40,7 +40,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
node-version: [18.x, 20.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
# steps:
# - uses: ioBroker/testing-action-deploy@v1
# with:
# node-version: '18.x'
# node-version: '20.x'
# # Uncomment the following line if your adapter cannot be installed using 'npm ci'
# # install-command: 'npm install'
# npm-token: ${{ secrets.NPM_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions io-package.json
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,6 @@
"zh-cn": "作为消息对象的扩展有效载荷可能性"
}
},
"title": "Notification for AndroidTv and FireTV",
"titleLang": {
"en": "Notification for AndroidTv and FireTV",
"de": "Benachrichtigung für AndroidTv und FireTV",
Expand Down Expand Up @@ -141,6 +140,7 @@
"extIcon": "https://raw.githubusercontent.com/DNAngelX/ioBroker.notificationforandroidtv/main/admin/notificationforandroidtv.png",
"readme": "https://github.com/DNAngelX/ioBroker.notificationforandroidtv/blob/main/README.md",
"loglevel": "info",
"tier": 2,
"mode": "daemon",
"type": "messaging",
"compact": true,
Expand All @@ -151,7 +151,7 @@
},
"dependencies": [
{
"js-controller": ">=3.3.22"
"js-controller": ">=5.0.19"
}
],
"globalDependencies": [
Expand Down
Loading