Skip to content
Snippets Groups Projects

Amélioration de la pipeline

Merged MARTIN Pierre-Alexandre requested to merge devs/pipeline into dev
Files
2
+ 8
9
@@ -39,7 +39,8 @@ build:
- npm run build
artifacts:
paths:
- dist/
- .nuxt/
- .output/
test:
stage: test
@@ -47,8 +48,13 @@ test:
- job: build
artifacts: true # grabs built files
script:
- npm ci
- npm run test
artifacts:
when: always
paths:
- .nuxt/tests/vitest-junit-report.xml
reports:
junit: vitest-junit-report.xml
lint:
stage: test
@@ -56,11 +62,4 @@ lint:
- job: build
artifacts: true
script:
- npm ci
- npm run lint
artifacts:
when: always
paths:
- /builds/3spa/web-admin/junit-report.xml
reports:
junit: /builds/3spa/web-admin/junit-report.xml
Loading