From 22680f9f0efcec99fc3c7b7cc9164eb19d70b158 Mon Sep 17 00:00:00 2001 From: Anurag Gupta Date: Mon, 20 Jan 2025 13:19:45 +0530 Subject: [PATCH] chore: system deps --- .github/workflows/publish.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61c3a2d3..ee605f9e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -75,8 +75,13 @@ jobs: - name: Install dependencies run: npm ci - - name: Install playwright - run: npx playwright install --with-deps + - name: Install system dependencies + run: | + sudo apt-get update + sudo apt-get install -y libasound2 libglib2.0-0 libnss3 libatk1.0-0 libatk-bridge2.0-0 libcups2 libdrm2 libxkbcommon0 libxcomposite1 libxdamage1 libxfixes3 libxrandr2 libgbm1 libpango-1.0-0 libcairo2 libasound2 + + - name: Install playwright browsers + run: npx playwright install - name: Build run: npm run build