Skip to content

Commit

Permalink
Merge pull request #226 from TaloDev/develop
Browse files Browse the repository at this point in the history
Release 0.26.3
  • Loading branch information
tudddorrr authored Dec 27, 2023
2 parents 29ebf8d + e228deb commit 8fb9e14
Show file tree
Hide file tree
Showing 6 changed files with 217 additions and 169 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- uses: actions/cache@v3
with:
Expand All @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- name: Run Cypress
uses: cypress-io/github-action@v5
Expand All @@ -52,7 +52,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- uses: actions/cache@v3
with:
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@v3
with:
node-version: 16
node-version: 20

- uses: actions/cache@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:16-alpine AS build
FROM node:20-alpine AS build
WORKDIR /usr/frontend
COPY . .
RUN yarn
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
"lint-staged": {
"*.{js,jsx}": "eslint --fix"
},
"version": "0.26.2",
"version": "0.26.3",
"engines": {
"node": "16.x"
"node": "20.x"
}
}
1 change: 1 addition & 0 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import react from '@vitejs/plugin-react-swc'
export default defineConfig({
plugins: [react()],
server: {
host: '0.0.0.0',
port: 8080
},
test: {
Expand Down
Loading

0 comments on commit 8fb9e14

Please sign in to comment.