Skip to content

Commit d859df4

Browse files
authored
Merge pull request #1419 from nextcloud/backport/1397/stable0.7
[stable0.7] fix: use unique names for actions upload-artifact
2 parents 3bc646a + afc7cc2 commit d859df4

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
@@ -142,24 +142,24 @@ jobs:
142142
CYPRESS_ncVersion: ${{ matrix.server-versions }}
143143
npm_package_name: ${{ env.APP_NAME }}
144144

145-
- name: Print logs
145+
- name: Print logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
146146
if: always()
147147
run: |
148148
cat /tmp/requestlog
149149
cat data/nextcloud.log
150150
151-
- name: Upload test failure screenshots
151+
- name: Upload test failure screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
152152
uses: actions/upload-artifact@v4
153153
if: failure()
154154
with:
155-
name: Upload screenshots
155+
name: Upload screenshots ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
156156
path: apps/${{ env.APP_NAME }}/cypress/screenshots/
157157
retention-days: 5
158158

159-
- name: Upload nextcloud logs
159+
- name: Upload nextcloud logs ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
160160
uses: actions/upload-artifact@v4
161161
if: failure()
162162
with:
163-
name: Upload nextcloud log
163+
name: Upload nextcloud log ${{ matrix.node-version }}-${{ matrix.php-versions }}-${{ matrix.server-versions }}-${{ matrix.databases }}
164164
path: data/nextcloud.log
165165
retention-days: 5

cypress/e2e/tables-table.cy.js

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

3535
it('Update title And Description', () => {
@@ -44,7 +44,7 @@ describe('Manage a table', () => {
4444

4545
cy.wait(10).get('.toastify.toast-success').should('be.visible')
4646
cy.get('.app-navigation__list').contains('ToDo list').should('exist')
47-
cy.contains('.paragraph-content', 'Updated ToDo List description').should('be.visible')
47+
cy.contains('.text-editor__content p', 'Updated ToDo List description').should('be.visible')
4848
})
4949

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

0 commit comments

Comments
 (0)