File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -29,10 +29,10 @@ jobs:
29
29
steps :
30
30
- uses : actions/checkout@v4
31
31
32
- - name : Setup Node.js 18
32
+ - name : Setup Node.js 22
33
33
uses : actions/setup-node@v3
34
34
with :
35
- node-version : 18
35
+ node-version : 22
36
36
37
37
- name : Install dependencies for cli
38
38
run : yarn add eslint@^8.40.0 eslint-plugin-import@^2.29.0 eslint-plugin-prettier@^5.0.1 eslint-plugin-react@^7.29.4 eslint-plugin-unused-imports@^3.0.0 --dev
Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ Please follow the existing code style and conventions used in the project. If yo
29
29
```
30
30
pip install -r backend/dev-requirements.txt --upgrade
31
31
```
32
- Also install the eslint for both `cli/` and `webserver/`. Please use node 18 for that
32
+ Also install the eslint for both `cli/` and `webserver/`. Please use node 22 for that
33
33
*NOTE*: If NVM is not installed, install using [nvm](https://github.com/nvm-sh/nvm?tab=readme-ov-file#installing-and-updating)
34
34
```
35
- nvm install 18
36
- nvm use 18
35
+ nvm install 22
36
+ nvm use 22
37
37
```
38
38
```
39
39
cd cli
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ RUN apt-get update && \
67
67
redis-server \
68
68
supervisor \
69
69
curl \
70
- && curl -fsSL https://deb.nodesource.com/setup_18 .x | bash - \
70
+ && curl -fsSL https://deb.nodesource.com/setup_22 .x | bash - \
71
71
&& apt-get install -y nodejs \
72
72
&& mkdir -p /etc/cron.d && mv /app/setup_utils/cronjob.txt /etc/cron.d/cronjob \
73
73
&& chmod +x /app/setup_utils/* \
Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ RUN mv /app/database-docker/db/ /app/ && rm -rf /app/database-docker/
44
44
RUN echo "host all all 0.0.0.0/0 md5" >> /etc/postgresql/15/main/pg_hba.conf
45
45
RUN echo "listen_addresses='*'" >> /etc/postgresql/15/main/postgresql.conf
46
46
RUN sed -i "s/^port = .*/port = ${DB_PORT}/" /etc/postgresql/15/main/postgresql.conf
47
- RUN curl -fsSL https://deb.nodesource.com/setup_18 .x | bash - \
47
+ RUN curl -fsSL https://deb.nodesource.com/setup_22 .x | bash - \
48
48
&& apt-get install -y nodejs \
49
49
&& npm install --global yarn
50
50
RUN mkdir -p /var/log/postgres
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
11
11
redis-server \
12
12
supervisor \
13
13
curl \
14
- && curl -fsSL https://deb.nodesource.com/setup_18 .x | bash - \
14
+ && curl -fsSL https://deb.nodesource.com/setup_22 .x | bash - \
15
15
&& apt-get install -y nodejs \
16
16
&& curl -fsSL -o /usr/local/bin/dbmate https://github.com/amacneil/dbmate/releases/download/v1.16.0/dbmate-linux-amd64 \
17
17
&& chmod +x /usr/local/bin/dbmate \
Original file line number Diff line number Diff line change 4
4
"license" : " MIT" ,
5
5
"bin" : " dist/cli.js" ,
6
6
"engines" : {
7
- "node" : " ^18.19.0 "
7
+ "node" : " ^22.x "
8
8
},
9
9
"type" : " module" ,
10
10
"scripts" : {
Original file line number Diff line number Diff line change 129
129
"prettier" : " ^3.0.3"
130
130
},
131
131
"engines" : {
132
- "node" : " ^18.19.0 "
132
+ "node" : " ^22.x "
133
133
}
134
134
}
You can’t perform that action at this time.
0 commit comments