File tree Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Expand file tree Collapse file tree 1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -177,7 +177,9 @@ jobs:
177
177
- uses : actions/cache@v4
178
178
id : cache-cypress
179
179
with :
180
- path : /root/.cache/Cypress
180
+ path : |
181
+ /root/.cache/Cypress
182
+ /github/home/.cache/Cypress
181
183
key : ${{ runner.os }}-cypress-${{ hashFiles('package-lock.json') }}
182
184
- name : Install Cypress dependencies
183
185
if : steps.cache-cypress.outputs.cache-hit != 'true'
@@ -224,12 +226,12 @@ jobs:
224
226
key : ${{ runner.os }}-node-${{ hashFiles('package-lock.json', 'build/media_source/**', 'administrator/components/com_media/resources/**') }}
225
227
- uses : actions/cache/restore@v4
226
228
with :
227
- path : /root/.cache/Cypress
229
+ path : |
230
+ /root/.cache/Cypress
231
+ /github/home/.cache/Cypress
228
232
key : ${{ runner.os }}-cypress-${{ hashFiles('package-lock.json') }}
229
233
- name : Run System tests
230
- run : |
231
- npx cypress install
232
- bash tests/System/entrypoint.sh "$(pwd)" ${{ matrix.config.test_group }} ${{ matrix.config.db_engine }} ${{ matrix.config.db_host }} chrome
234
+ run : bash tests/System/entrypoint.sh "$(pwd)" ${{ matrix.config.test_group }} ${{ matrix.config.db_engine }} ${{ matrix.config.db_host }} chrome
233
235
- name : Archive test results results
234
236
uses : actions/upload-artifact@v4
235
237
if : always()
You can’t perform that action at this time.
0 commit comments