Skip to content

Commit d7c9ebb

Browse files
committed
fix: install additional dependencies before pnpm install in workflow
1 parent fda0ecd commit d7c9ebb

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
cache: 'pnpm'
3030

3131
- name: Install Dependencies
32-
run: pnpm install
32+
run: |
33+
sudo apt-get install -y libpixman-1-dev libcairo2-dev libpango1.0-dev
34+
pnpm install
3335
3436
- name: Bulid Artifacts
3537
run: pnpm build

0 commit comments

Comments
 (0)