chore(ci): add dependency installation step in CI pipeline in case cache miss (#685)

This commit is contained in:
Shintaro Jokagi
2025-06-18 18:55:35 +12:00
committed by GitHub
parent 58af542675
commit c23ca6c698

View File

@@ -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: