Skip to content
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
7 changes: 5 additions & 2 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,16 @@ jobs:
- name: Run tests (browser)
run: yarn test
test_node:
name: Test (Node.js)
name: Test (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 21.x, 22.x, 23.x, 24.x]
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: ${{ matrix.node-version }}
cache: 'yarn'
- name: Install Deps
run: yarn install --immutable
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"author": "Qminder <support@qminder.com> (https://www.qminder.com)",
"license": "Apache-2.0",
"engines": {
"node": "^22.0.0"
"node": ">=20.*"
},
"scripts": {
"test": "jest",
Expand Down
4 changes: 2 additions & 2 deletions packages/javascript-api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "qminder-api",
"version": "15.0.0",
"version": "15.0.1",
"description": "Qminder Javascript API. Makes it easy to leverage Qminder capabilities in your system.",
"scripts": {
"test": "jest",
Expand All @@ -24,7 +24,7 @@
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "^22.0.0"
"node": ">=20.*"
},
"browserslist": [
"last 2 major versions"
Expand Down
Loading