Skip to content

Commit eb4ff79

Browse files
authored
Merge pull request #1408 from nextcloud/backport/1397/stable0.8
[stable0.8] fix: use unique names for actions upload-artifact
2 parents f94c350 + 3bf628b commit eb4ff79

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/cypress-custom.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,24 +149,24 @@ jobs:
149149
CYPRESS_ncVersion: ${{ matrix.server-versions }}
150150
npm_package_name: ${{ env.APP_NAME }}
151151

152-
- name: Print logs
152+
- name: Print logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
153153
if: always()
154154
run: |
155155
cat /tmp/requestlog
156156
cat data/nextcloud.log
157157
158-
- name: Upload test failure screenshots
158+
- name: Upload test failure screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
159159
uses: actions/upload-artifact@v4
160160
if: failure()
161161
with:
162-
name: Upload screenshots
162+
name: Upload screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
163163
path: apps/${{ env.APP_NAME }}/cypress/screenshots/
164164
retention-days: 5
165165

166-
- name: Upload nextcloud logs
166+
- name: Upload nextcloud logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
167167
uses: actions/upload-artifact@v4
168168
if: failure()
169169
with:
170-
name: Upload nextcloud log
170+
name: Upload nextcloud log ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
171171
path: data/nextcloud.log
172172
retention-days: 5

cypress/e2e/tables-table.cy.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ describe('Manage a table', () => {
3232
cy.contains('button', 'Create row').should('be.visible')
3333
cy.contains('h1', 'to do list').should('be.visible')
3434
cy.contains('table th', 'Task').should('exist')
35-
cy.contains('.paragraph-content', 'to Do List description').should('be.visible')
35+
cy.contains('.text-editor__content p', 'to Do List description').should('be.visible')
3636
})
3737

3838
it('Create with import', () => {
@@ -71,7 +71,7 @@ describe('Manage a table', () => {
7171

7272
cy.wait(10).get('.toastify.toast-success').should('be.visible')
7373
cy.get('.app-navigation__list').contains('ToDo list').should('exist')
74-
cy.contains('.paragraph-content', 'Updated ToDo List description').should('be.visible')
74+
cy.contains('.text-editor__content p', 'Updated ToDo List description').should('be.visible')
7575
})
7676

7777
it('Delete', () => {

0 commit comments

Comments
 (0)