diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 9 |
1 files 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 |
