Revert "fix: update frontend build process and add logging for embedded assets"
Some checks failed
Test / get-ci-image (pull_request) Successful in 11s
Test / lint-frontend (pull_request) Failing after 30s
Test / test-frontend (pull_request) Successful in 21s
Verify / get-ci-image (pull_request) Successful in 35s
Test / frontend-build (pull_request) Successful in 51s
Test / test-crates (pull_request) Failing after 4m37s
Test / lint-crates (pull_request) Failing after 40s
Verify / verify-generated-db-entities (pull_request) Successful in 9m14s

This reverts commit 4b80619c97.
This commit is contained in:
GW_MC
2026-04-25 04:26:29 +00:00
parent 4b80619c97
commit 1481e31182

View File

@@ -42,11 +42,13 @@ jobs:
- name: Setup Rust, checkout and restore caches - name: Setup Rust, checkout and restore caches
uses: ./.github/actions/setup-rust uses: ./.github/actions/setup-rust
- name: Download frontend build artifact - name: Restore frontend build cache
uses: actions/download-artifact@v3 uses: actions/cache@v4
with: with:
name: frontend-build
path: apps/nxmesh-frontend/dist path: apps/nxmesh-frontend/dist
key: frontend-build-${{ runner.os }}-run-${{ github.run_id }}
restore-keys: |
frontend-build-${{ runner.os }}-
- name: Copy frontend build to expected location - name: Copy frontend build to expected location
run: | run: |
@@ -78,11 +80,13 @@ jobs:
with: with:
components: clippy, rustfmt components: clippy, rustfmt
- name: Download frontend build artifact - name: Restore frontend build cache
uses: actions/download-artifact@v3 uses: actions/cache@v4
with: with:
name: frontend-build
path: apps/nxmesh-frontend/dist path: apps/nxmesh-frontend/dist
key: frontend-build-${{ runner.os }}-run-${{ github.run_id }}
restore-keys: |
frontend-build-${{ runner.os }}-
- name: Copy frontend build to expected location - name: Copy frontend build to expected location
run: | run: |
@@ -156,8 +160,9 @@ jobs:
cd apps/nxmesh-frontend cd apps/nxmesh-frontend
bun run build bun run build
- name: Upload frontend build artifact - name: Cache frontend build
uses: actions/upload-artifact@v3 uses: actions/cache@v4
with: with:
name: frontend-build
path: apps/nxmesh-frontend/dist path: apps/nxmesh-frontend/dist
key: frontend-build-${{ runner.os }}-run-${{ github.run_id }}
# IGNORE restore-keys