From 2cf117f92bf5c2a1e67fa553f5cb694c81fb04ea Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Sat, 29 Aug 2026 16:15:21 +0200 Subject: [PATCH] Update pipeline for dev --- .gitea/workflows/dev.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.gitea/workflows/dev.yml b/.gitea/workflows/dev.yml index 7f641d6..d482f69 100644 --- a/.gitea/workflows/dev.yml +++ b/.gitea/workflows/dev.yml @@ -9,30 +9,30 @@ jobs: name: Build and Deploy runs-on: ubuntu-latest - # services: - # mermaid: - # image: yuzutech/kroki-mermaid - # kroki: - # image: yuzutech/kroki - # env: - # KROKI_MERMAID_HOST: mermaid + services: + mermaid: + image: yuzutech/kroki-mermaid + kroki: + image: yuzutech/kroki + env: + KROKI_MERMAID_HOST: mermaid steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v7 name: Checkout code - name: Setup node and npm - uses: actions/setup-node@v3 + uses: actions/setup-node@v7 with: - node-version: lts/* + node-version: 24 - name: Install dependencies - run: npm install + run: npm ci - name: Check and build run: npm run build - # env: - # KROKI_SERVER: "http://kroki:8000" + env: + KROKI_SERVER: "http://kroki:8000" - name: Copy files via ssh uses: appleboy/scp-action@v1