From fc545b3b88619cd476bf7f446aaba9384e2b8b4d Mon Sep 17 00:00:00 2001 From: taroj1205 Date: Sun, 22 Jun 2025 17:05:09 +1200 Subject: [PATCH] chore(ci): update Playwright container image and install unzip for Bun setup --- .github/workflows/ci-pipeline.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index 9fe5e6f..dfca92d 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -85,7 +85,7 @@ jobs: if: ${{ needs.check_changes.outputs.exists == 'true' }} runs-on: ubuntu-latest container: - image: mcr.microsoft.com/playwright:v1.52.0-noble + image: mcr.microsoft.com/playwright:v1.52.0-jammy options: --user 1001 steps: - uses: actions/checkout@v4 @@ -96,6 +96,11 @@ jobs: name: build-dist path: dist/ + - name: Install unzip (required for Bun setup) + run: | + sudo apt-get update + sudo apt-get install -y unzip + - name: Setup Bun with Cache uses: ./.github/actions/setup-bun-with-cache with: