summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorAAGaming <aa@mail.catvibers.me>2022-10-14 23:26:42 -0400
committerAAGaming <aa@mail.catvibers.me>2022-10-14 23:26:42 -0400
commit7d73c7aa792bb89510dd34183bc2cde27359d5e4 (patch)
treecd3f5305f1b8157477be9168c0f5852c282e335c /.github
parentfd187a67109c200fa676d10aedcefb5d30e46ef2 (diff)
downloaddecky-loader-7d73c7aa792bb89510dd34183bc2cde27359d5e4.tar.gz
decky-loader-7d73c7aa792bb89510dd34183bc2cde27359d5e4.zip
setup-pnpm action is bad, do it ourself
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/build.yml9
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