diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 0ce86d1..e5a10c3 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -31,6 +31,20 @@ jobs: - name: Download dependencies run: go mod download + - name: Set up Node + uses: actions/setup-node@v4 + with: + node-version: 'lts/*' + + - name: Install pnpm + run: npm install -g pnpm + + - name: Build UI + run: | + cd ui + pnpm install --frozen-lockfile + pnpm run build + - name: Tidy modules run: go mod tidy