Add frontend build artifact handling and linting steps to CI workflow
Some checks failed
Test / verify-generated-code (pull_request) Successful in 55s
Test / test-frontend (pull_request) Successful in 20s
Test / frontend-build (pull_request) Failing after 38s
Test / test (pull_request) Has been skipped
Test / lint (pull_request) Has been skipped

This commit is contained in:
GW_MC
2025-12-02 20:18:48 +08:00
parent 06cabb0e18
commit 0374d63efe
2 changed files with 66 additions and 9 deletions

View File

@@ -52,3 +52,11 @@ build-backend:
cargo build --release
build: build-frontend build-backend
act *args:
if [ -n "{{args}}" ]; then \
act {{args}} --artifact-server-path /tmp/artifacts; \
else \
act; \
fi