We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7535cb9 commit 77b59b1Copy full SHA for 77b59b1
.github/workflows/browser-tests.yml
@@ -91,6 +91,17 @@ jobs:
91
sudo npx playwright install-deps
92
npx playwright install
93
94
+ - name: Cache node_modules
95
+ id: node-modules-cache
96
+ uses: actions/cache@v4
97
+ with:
98
+ path: admin/node_modules
99
+ key: ${{ runner.os }}-node-modules-${{ hashFiles('admin/package-lock.json') }}
100
+
101
+ - name: Install node dependencies
102
+ if: steps.node-modules-cache.outputs.cache-hit != 'true'
103
+ run: cd admin && npm install
104
105
- name: Run Non-Kit Tests on Chrome
106
run: cd admin && npm run test:browser-mocked-legacy-cdn-chrome
107
0 commit comments