We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44f73f2 commit 752727bCopy full SHA for 752727b
.github/workflows/validate.yml
@@ -56,6 +56,20 @@ jobs:
56
- name: 📦 Install dependencies
57
run: npm ci
58
59
+ - name: 📦 Cache Playwright Browsers
60
+ uses: actions/cache@v4
61
+ id: playwright-cache
62
+ with:
63
+ path: ~/.cache/ms-playwright
64
+ key:
65
+ ${{ runner.os }}-playwright-${{ hashFiles('**/package-lock.json') }}
66
+ restore-keys: |
67
+ ${{ runner.os }}-playwright-
68
+
69
+ - name: 📥 Install Playwright Browsers
70
+ if: steps.playwright-cache.outputs.cache-hit != 'true'
71
+ run: npx playwright install chromium --with-deps
72
73
- name: 🚀 Start app server
74
run: |
75
npm run dev --silent --prefix ./epicshop/epic-me -- --clearScreen=false --logLevel=error --strictPort &
0 commit comments