Skip to content

Commit cbfc440

Browse files
committed
path
1 parent cd8b025 commit cbfc440

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,9 @@ jobs:
177177
- uses: actions/cache@v4
178178
id: cache-cypress
179179
with:
180-
path: /root/.cache/Cypress
180+
path: |
181+
/root/.cache/Cypress
182+
/github/home/.cache/Cypress
181183
key: ${{ runner.os }}-cypress-${{ hashFiles('package-lock.json') }}
182184
- name: Install Cypress dependencies
183185
if: steps.cache-cypress.outputs.cache-hit != 'true'
@@ -224,12 +226,12 @@ jobs:
224226
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json', 'build/media_source/**', 'administrator/components/com_media/resources/**') }}
225227
- uses: actions/cache/restore@v4
226228
with:
227-
path: /root/.cache/Cypress
229+
path: |
230+
/root/.cache/Cypress
231+
/github/home/.cache/Cypress
228232
key: ${{ runner.os }}-cypress-${{ hashFiles('package-lock.json') }}
229233
- 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
233235
- name: Archive test results results
234236
uses: actions/upload-artifact@v4
235237
if: always()

0 commit comments

Comments
 (0)