diff --git a/.github/actions/playwright/action.yaml b/.github/actions/playwright/action.yaml index 1b39ee7c..7b614e0c 100644 --- a/.github/actions/playwright/action.yaml +++ b/.github/actions/playwright/action.yaml @@ -33,3 +33,9 @@ runs: if: steps.playwright-cache.outputs.cache-hit != 'true' working-directory: ./${{ inputs.testDir }} shell: bash + + - name: Install playwright dependencies if needed + run: npx playwright install-deps + if: steps.playwright-cache.outputs.cache-hit == 'true' + working-directory: ./${{ inputs.testDir }} + shell: bash