Skip to content

Commit aa71037

Browse files
committed
Updating for nodejs 22.x.
1 parent 4d7fbbf commit aa71037

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: ubuntu-24.04
88
strategy:
99
matrix:
10-
node-version: ['20']
10+
node-version: ['20', '22']
1111
steps:
1212
- uses: actions/checkout@v2
1313
- uses: actions/setup-node@v1
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-24.04
2323
strategy:
2424
matrix:
25-
node-version: ['20']
25+
node-version: ['20', '22']
2626
steps:
2727
- uses: actions/checkout@v2
2828
- uses: actions/setup-node@v1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
## Installation
99

10-
The web application requires [NodeJS](https://nodejs.org/en/) 20.x server as a runtime
10+
The web application requires [NodeJS](https://nodejs.org/en/) 20+ (recommended version is LTS 22.x) server as a runtime
1111
environment. This runtime is needed for executing JavaScript code on server and
1212
sending the pre-render parts of pages to clients, so the final rendering in
1313
browsers is a lot quicker and the page is accessible to search engines for

recodex-web.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%define short_name web-app
33
%define version 2.17.0
44
%define unmangled_version c06ba1029a7411a1f7ab431437595344db2fc721
5-
%define release 1
5+
%define release 2
66

77
Summary: ReCodEx web-app component
88
Name: %{name}

test/setup.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ register('./test/loader.js', pathToFileURL('./'));
1515

1616
global.document = new JSDOM('<!doctype html><html><body></body></html>');
1717
global.window = global.document.window;
18-
global.navigator = global.window.navigator;
1918

2019
class FormData {
2120
_data = {};

0 commit comments

Comments
 (0)