fix: build UI assets in CI
CI / build-and-test (pull_request) Successful in 1m20s
CI / build-and-test (push) Successful in 1m23s

This commit is contained in:
2026-07-15 05:14:09 +02:00
parent 4b3f0b1b55
commit e3a4a3c5c7
6 changed files with 552 additions and 17 deletions
+16
View File
@@ -18,6 +18,14 @@ jobs:
with:
go-version: '1.26'
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: '24'
- name: Enable pnpm
run: corepack enable
- name: Cache Go modules
uses: actions/cache@v4
with:
@@ -34,6 +42,14 @@ jobs:
- name: Tidy modules
run: go mod tidy
- name: Install UI dependencies
run: pnpm install --frozen-lockfile
working-directory: ui
- name: Build UI assets
run: pnpm run build
working-directory: ui
- name: Run tests
run: go test ./...