From 67158776be1e86f41fd25631e74de7b03fb02163 Mon Sep 17 00:00:00 2001 From: Anurag Gupta Date: Mon, 20 Jan 2025 13:28:48 +0530 Subject: [PATCH] chore: system deps --- .github/workflows/publish.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 61c3a2d3..1ab9e429 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -74,9 +74,14 @@ 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 libicu70 + + - name: Install playwright browsers + run: npx playwright install - name: Build run: npm run build