6695-docker_push_3 #1423

Merged
alexm merged 424 commits from 6695-docker_push_3 into dev 2025-02-21 12:41:37 +00:00
2 changed files with 5 additions and 5 deletions
Showing only changes of commit de9f3f32fd - Show all commits

2
Jenkinsfile vendored
View File

@ -87,7 +87,7 @@ pipeline {
expression { !PROTECTED_BRANCH }
}
environment {
NODE_ENV = ""
NODE_ENV = ''
CI = 'true'
TZ = 'Europe/Madrid'
}

View File

@ -6,11 +6,11 @@ import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite';
import path from 'path';
let reporters,
junit;
outputFile;
if (process.env.CI) {
reporters = 'junit';
junit = {outputFile: './junit/vitest.xml'};
reporters = ['junit', 'default'];
outputFile = {junit: './junit/vitest.xml'};
} else {
reporters = 'default';
}
@ -19,7 +19,7 @@ if (process.env.CI) {
export default defineConfig({
test: {
reporters,
junit,
outputFile,
environment: 'happy-dom',
setupFiles: 'test/vitest/setup-file.js',
include: [