Skip to content
Open
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
26 changes: 19 additions & 7 deletions .github/workflows/test-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:

steps:
- uses: actions/checkout@v5
- name: Use Node.js 18.x
- name: Use Node.js 22.x
uses: actions/setup-node@v5
with:
node-version: 18.x
node-version: 22.x


- name: Install Dependencies
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]

steps:
- uses: actions/checkout@v5
Expand All @@ -73,6 +73,9 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Run MySQL tests
run: node node_modules/mocha/bin/mocha test/testMySQL*.js --exit
env:
Expand All @@ -94,7 +97,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]

# Service containers to run with `container-job`
services:
Expand Down Expand Up @@ -125,6 +128,9 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Run Postgres tests
run: node node_modules/mocha/bin/mocha test/testPostgreSQL.js --exit
env:
Expand All @@ -146,7 +152,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]

# Service containers to run with `container-job`
services:
Expand All @@ -169,6 +175,9 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Run MSSQL tests
run: node node_modules/mocha/bin/mocha test/testMSSQL.js --exit
env:
Expand All @@ -190,7 +199,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
node-version: [18.x, 20.x, 22.x, 24.x]
os: [ubuntu-latest, windows-latest, macos-latest]

steps:
Expand All @@ -203,6 +212,9 @@ jobs:
- name: Install Dependencies
run: npm install

- name: Build
run: npm run build

- name: Run SQLite tests
run: node node_modules/mocha/bin/mocha test/testSQLite.js --exit
- name: Run Commons
Expand All @@ -229,7 +241,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
node-version: [22.x]

steps:
- name: Checkout code
Expand Down
5 changes: 4 additions & 1 deletion .releaseconfig.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
{
"plugins": ["iobroker", "license"]
"plugins": ["iobroker", "license"],
"exec": {
"before_commit": "npm run build"
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2024 bluefox <dogafox@gmail.com>, Apollon77
Copyright (c) 2015-2025 bluefox <dogafox@gmail.com>, Apollon77

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
182 changes: 88 additions & 94 deletions README.md

Large diffs are not rendered by default.

Loading
Loading