From e80f8c6d09405f762463bf408b7d67e408990114 Mon Sep 17 00:00:00 2001 From: Romane <122701716+rom-vtn@users.noreply.github.com> Date: Wed, 6 May 2026 09:45:00 +0200 Subject: [PATCH] change npm to npx for marp --- .gitea/workflows/build.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6e96312..37ae972 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,19 +10,19 @@ jobs: id: restore-cache uses: actions/cache@v3 with: - path: /opt/acttoolcache + path: /root/.npm key: node-marp-installation - name: checkout uses: actions/checkout@v4 - name: install marp if: steps.restore-cache.outputs.cache-hit != 'true' run: | - npm install -g @marp-team/marp-cli@latest + npx @marp-team/marp-cli@latest - name: cache marp installation if: steps.restore-cache.outputs.cache-hit != 'true' uses: actions/cache/save@v3 with: - path: /opt/acttoolcache + path: /root/.npm key: node-marp-installation - name: build presentation working-directory: ./presentation