ci: refs #6695 update Jenkinsfile remove unnecessary environment variables
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
af2b8f95c5
commit
de7a7c5144
|
@ -106,9 +106,9 @@ pipeline {
|
|||
--network ${networkLowerCase}_default
|
||||
-e TZ=Europe/Madrid
|
||||
-e DOCKER=true
|
||||
-e CI=true
|
||||
""".stripIndent()) {
|
||||
sh 'pnpm exec cypress install'
|
||||
sh 'pnpm exec cypress run --browser chromium --ci'
|
||||
sh 'pnpm exec cypress run --browser chromium'
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,6 +2,7 @@ FROM alexmorenovn/vndev:latest
|
|||
|
||||
WORKDIR /app
|
||||
COPY package.json pnpm-lock.yaml ./
|
||||
RUN pnpm install --frozen-lockfile && pnpm exec cypress install
|
||||
RUN pnpm install --frozen-lockfile \
|
||||
pnpm exec cypress install --cache-folder=/home/node/.cache/Cypress
|
||||
|
||||
WORKDIR /app
|
||||
|
|
Loading…
Reference in New Issue