Skip to content

Commit 12e1878

Browse files
committed
fix(ci): missing step to build frontend
1 parent aca3189 commit 12e1878

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/release.yaml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,19 @@ jobs:
4545
uses: actions/checkout@v5
4646

4747

48+
- name: Set up Node.js
49+
uses: actions/setup-node@v4
50+
with:
51+
node-version: "24"
52+
53+
- name: Build frontend
54+
shell: bash
55+
run: |
56+
set -euo pipefail
57+
cd frontend
58+
npm ci
59+
npm run build
60+
4861
- name: Set up Go
4962
uses: actions/setup-go@v6
5063
with:

0 commit comments

Comments
 (0)