Skip to content

Commit 8fb9e14

Browse files
authored
Merge pull request #226 from TaloDev/develop
Release 0.26.3
2 parents 29ebf8d + e228deb commit 8fb9e14

File tree

6 files changed

+217
-169
lines changed

6 files changed

+217
-169
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v3
1111
- uses: actions/setup-node@v3
1212
with:
13-
node-version: 16
13+
node-version: 20
1414

1515
- uses: actions/cache@v3
1616
with:
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v3
3434
- uses: actions/setup-node@v3
3535
with:
36-
node-version: 16
36+
node-version: 20
3737

3838
- name: Run Cypress
3939
uses: cypress-io/github-action@v5
@@ -52,7 +52,7 @@ jobs:
5252
- uses: actions/checkout@v3
5353
- uses: actions/setup-node@v3
5454
with:
55-
node-version: 16
55+
node-version: 20
5656

5757
- uses: actions/cache@v3
5858
with:
@@ -72,7 +72,7 @@ jobs:
7272
- uses: actions/checkout@v3
7373
- uses: actions/setup-node@v3
7474
with:
75-
node-version: 16
75+
node-version: 20
7676

7777
- uses: actions/cache@v3
7878
with:

.github/workflows/create-release.yml

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

1515
- uses: actions/setup-node@v3
1616
with:
17-
node-version: 16
17+
node-version: 20
1818

1919
- uses: actions/cache@v3
2020
with:

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16-alpine AS build
1+
FROM node:20-alpine AS build
22
WORKDIR /usr/frontend
33
COPY . .
44
RUN yarn

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@
7171
"lint-staged": {
7272
"*.{js,jsx}": "eslint --fix"
7373
},
74-
"version": "0.26.2",
74+
"version": "0.26.3",
7575
"engines": {
76-
"node": "16.x"
76+
"node": "20.x"
7777
}
7878
}

vite.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import react from '@vitejs/plugin-react-swc'
44
export default defineConfig({
55
plugins: [react()],
66
server: {
7+
host: '0.0.0.0',
78
port: 8080
89
},
910
test: {

0 commit comments

Comments
 (0)