diff options
| author | Paul-Christian Volkmer | 2026-01-09 09:05:19 +0100 |
|---|---|---|
| committer | GitHub | 2026-01-09 08:05:19 +0000 |
| commit | a777b837bbbd984df1cbf2e972efba4f5df19606 (patch) | |
| tree | 3edc7850c569368184f5cb8102cf84355e155e9e /.github | |
| parent | ed4b068127530346345ed16b2e79b33bc5b03d57 (diff) | |
ci: build web resources (#240)
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/ci.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 170f5dc..a43cce8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,6 +46,9 @@ jobs: - integrationTests steps: - uses: actions/checkout@v4 + - uses: actions/setup-node@v6 + with: + node-version: 24 - uses: actions/setup-java@v4 with: java-version: '21' @@ -56,7 +59,10 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 - name: Build image - run: ./gradlew bootBuildImage + run: | + npm install + npm run build + ./gradlew bootBuildImage # Deploy docker image - name: Login to Docker Hub uses: docker/login-action@v3 |
