Skip to content

Commit 1666a96

Browse files
committed
chore: update GitHub Actions workflow to install pnpm in multiple directories
- Added a step to run pnpm install for the frontend, admin, and extension directories, improving package management. - This change enhances the workflow by ensuring all necessary dependencies are installed before executing make commands.
1 parent 9455b35 commit 1666a96

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/use-make-test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,11 @@ jobs:
2626
enable-cache: true
2727
- name: Install pnpm
2828
uses: pnpm/action-setup@v3
29+
with:
30+
run_install: |
31+
- pnpm install --dir frontend
32+
- pnpm install --dir admin
33+
- pnpm install --dir extension
34+
2935
- name: Make all
3036
run: make all

0 commit comments

Comments
 (0)