From 3e0784971a239c318d4c4869928c0cdfecc1b925 Mon Sep 17 00:00:00 2001 From: Urko Date: Fri, 30 Jan 2026 10:48:43 +0000 Subject: [PATCH] ci: fix pipeline --- .gitea/workflows/build.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 50e55e3..253fc08 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -16,6 +16,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.12.0 + run_install: false + - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -23,9 +29,6 @@ jobs: cache: "pnpm" cache-dependency-path: pnpm-lock.yaml - - name: Install pnpm - run: npm install -g pnpm@9.12.0 - - name: Install deps run: pnpm install --frozen-lockfile @@ -40,6 +43,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Install pnpm + uses: pnpm/action-setup@v4 + with: + version: 9.12.0 + run_install: false + - name: Setup Node.js uses: actions/setup-node@v4 with: @@ -47,9 +56,6 @@ jobs: cache: "pnpm" cache-dependency-path: pnpm-lock.yaml - - name: Install pnpm - run: npm install -g pnpm@9.12.0 - - name: Install deps run: pnpm install --frozen-lockfile