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
2 changes: 1 addition & 1 deletion .github/workflows/build-plugin-deb-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Set up Node.js
run: |
curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
curl -fsSL https://deb.nodesource.com/setup_24.x | sudo -E bash -
sudo apt-get install -y nodejs

- name: Verify Node.js installation
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-publish-do-spaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
if: steps.check-secrets.outputs.configured == 'true'
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Install dependencies
if: steps.check-secrets.outputs.configured == 'true'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-upload-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- name: Install node
uses: actions/setup-node@v4
with:
node-version: 20.x
node-version: 24.x

- name: Install dependencies
run: npm ci
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
22
24
2 changes: 1 addition & 1 deletion debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Source: bbb-plugin-pick-random-user
Section: web
Priority: extra
Maintainer: Anton Georgiev <anton.georgiev@blindsidenetworks.com>
Build-Depends: debhelper (>= 13), nodejs (>= 18)
Build-Depends: debhelper (>= 13), nodejs (>= 22)
Standards-Version: 4.1.4
Homepage: https://github.com/bigbluebutton/bbb-plugin-pick-random-user

Expand Down
21 changes: 12 additions & 9 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,13 @@
"version": "0.1.2",
"private": true,
"main": "./src/index.tsx",
"engines": {
"node": ">=22"
},
"dependencies": {
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/node": "^20.3.1",
"@types/node": "^24.13.3",
"@types/react": "^18.2.13",
"@types/react-dom": "^18.2.6",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
Expand Down Expand Up @@ -52,7 +55,7 @@
"@babel/preset-react": "^7.18.6",
"@playwright/test": "^1.51.1",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^20.4.4",
"@types/node": "^24.13.3",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-modal": "^3.16.0",
Expand Down
Loading