From c23ca6c698aa6f13c03bcc452fc39d4e587f7db9 Mon Sep 17 00:00:00 2001 From: Shintaro Jokagi <61367823+taroj1205@users.noreply.github.com> Date: Wed, 18 Jun 2025 18:55:35 +1200 Subject: [PATCH] chore(ci): add dependency installation step in CI pipeline in case cache miss (#685) --- .github/workflows/ci-pipeline.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml index f02e88f..b6f13c0 100644 --- a/.github/workflows/ci-pipeline.yml +++ b/.github/workflows/ci-pipeline.yml @@ -120,6 +120,9 @@ jobs: with: run_install: false + - name: Install dependencies + run: pnpm install --frozen-lockfile + - name: Run ${{ matrix.name }} run: pnpm exec turbo run ${{ matrix.check }} @@ -159,6 +162,9 @@ jobs: with: run_install: false + - name: Install dependencies + run: pnpm install --frozen-lockfile + - name: Cache Playwright Browsers uses: actions/cache@v4 with: