Skip to content
Snippets Groups Projects
Commit cb0ba3e0 authored by Louis Chemineau's avatar Louis Chemineau
Browse files

Do not stop docker in cypress workflow


Signed-off-by: default avatarLouis Chemineau <louis@chmn.me>
parent dcd727ec
No related branches found
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ jobs:
- name: Upload NC logs
uses: actions/upload-artifact@v3
if: ${{ matrix.containers != 'component' }}
if: ( success() || failure() ) && matrix.containers != 'component'
with:
name: nc_logs_${{ matrix.containers }}
path: nextcloud.log
......
......@@ -71,7 +71,9 @@ export default defineConfig({
// Remove container after run
on('after:run', () => {
if (!process.env.CI) {
stopNextcloud()
}
})
// Before the browser launches
......
......@@ -24,7 +24,7 @@ import { assertVersionContent, clickPopperAction, openVersionMenu, openVersionsP
function restoreVersion(index: number) {
openVersionMenu(index)
clickPopperAction("Restore version")
clickPopperAction('Restore version')
}
describe('Versions restoration', () => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment