refs #6797 feat(jenkins) use pnpm
gitea/salix-front/pipeline/head There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2024-02-21 13:14:04 +01:00
parent 5d50ddd4db
commit 841544767e
5 changed files with 5831 additions and 30 deletions

View File

@ -1,5 +1,6 @@
FROM oven/bun:1
RUN bun install -g @quasar/cli
FROM node:stretch-slim
RUN corepack enable pnpm
RUN pnpm install -g @quasar/cli
WORKDIR /app
COPY dist/spa ./
CMD ["quasar", "serve", "./", "--history", "--hostname", "0.0.0.0"]

32
Jenkinsfile vendored
View File

@ -62,7 +62,7 @@ pipeline {
NODE_ENV = ""
}
steps {
sh 'bun install --no-audit --prefer-offline'
sh 'pnpm install --no-audit --prefer-offline'
}
}
stage('Test') {
@ -72,10 +72,18 @@ pipeline {
environment {
NODE_ENV = ""
}
parallel {
stage('Frontend') {
steps {
sh 'bun run test:unit:ci'
steps {
sh 'pnpm run test:unit:ci'
}
post {
always {
script {
try {
junit 'junitresults.xml'
junit 'junit.xml'
} catch (e) {
echo e.toString()
}
}
}
}
@ -112,18 +120,4 @@ pipeline {
}
}
}
post {
always {
script {
if (!PROTECTED_BRANCH) {
try {
junit 'junitresults.xml'
junit 'junit.xml'
} catch (e) {
echo e.toString()
}
}
}
}
}
}

BIN
bun.lockb

Binary file not shown.

View File

@ -16,12 +16,12 @@
},
"dependencies": {
"@quasar/cli": "^2.3.0",
"@quasar/extras": "^1.16.4",
"@quasar/extras": "^1.16.9",
"axios": "^1.4.0",
"chromium": "^3.0.3",
"croppie": "^2.6.5",
"pinia": "^2.1.3",
"quasar": "^2.12.0",
"quasar": "^2.14.5",
"validator": "^13.9.0",
"vue": "^3.3.4",
"vue-i18n": "^9.2.2",
@ -30,9 +30,9 @@
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^0.8.1",
"@pinia/testing": "^0.1.2",
"@quasar/app-vite": "^1.4.3",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.3.0",
"@vue/test-utils": "^2.3.2",
"@quasar/app-vite": "^1.7.3",
"@quasar/quasar-app-extension-testing-unit-vitest": "^0.4.0",
"@vue/test-utils": "^2.4.4",
"autoprefixer": "^10.4.14",
"cypress": "^12.13.0",
"eslint": "^8.41.0",
@ -41,7 +41,7 @@
"eslint-plugin-vue": "^9.14.1",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"vitest": "^0.31.1"
"vitest": "^1.3.1"
},
"engines": {
"node": "^20 || ^18 || ^16",
@ -50,8 +50,8 @@
"bun": ">= 1.0.25"
},
"overrides": {
"@vitejs/plugin-vue": "^4.0.0",
"vite": "^4.3.5",
"vitest": "^0.31.1"
"@vitejs/plugin-vue": "^5.0.4",
"vite": "^5.1.4",
"vitest": "^1.3.1"
}
}

5806
pnpm-lock.yaml Normal file

File diff suppressed because it is too large Load Diff