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