From 7d73c7aa792bb89510dd34183bc2cde27359d5e4 Mon Sep 17 00:00:00 2001 From: AAGaming Date: Fri, 14 Oct 2022 23:26:42 -0400 Subject: setup-pnpm action is bad, do it ourself --- .github/workflows/build.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 81b1977a..48ff9f61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -59,11 +59,10 @@ jobs: [ -f requirements.txt ] && pip install -r requirements.txt - name: Install JS dependencies ⬇️ - uses: pnpm/action-setup@v2.2.3 - with: - run_install: | - - cwd: ./frontend - args: [--frozen-lockfile] + working-directory: ./frontend + run: + npm i -g pnpm + pnpm ci --frozen-lockfile - name: Build JS Frontend 🛠️ working-directory: ./frontend -- cgit v1.2.3