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