refactor: use vite instead of CRA

This commit is contained in:
2026-04-04 14:57:32 +02:00
parent 02872f61ce
commit 408adf4b4d
16 changed files with 1005 additions and 9367 deletions
+3 -4
View File
@@ -11,10 +11,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js 18.x
- name: Setup Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: 24.x
- name: Cache NPM packages
uses: actions/cache@v4
with:
@@ -27,11 +27,10 @@ jobs:
- name: Yarn Install
run: |
cd ./frontend
yarn install --frozen-lockfiles
yarn install
- name: Yarn Test
run: |
cd ./frontend
./compile-less.sh
yarn run test
docker-fe-build: