mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2025-12-11 00:36:14 +00:00
23 lines
612 B
YAML
23 lines
612 B
YAML
e2e:
|
|
image: registry.gitlab.com/openstapps/openstapps/app-cypress
|
|
stage: test
|
|
script:
|
|
- pnpm install
|
|
- pnpm --filter=@openstapps/app exec cypress install
|
|
- pnpm test:integration:app --force --no-cache
|
|
artifacts:
|
|
when: on_failure
|
|
paths:
|
|
- frontend/app/cypress/videos
|
|
- frontend/app/cypress/screenshots
|
|
- frontend/app/coverage/integration-report-junit.xml
|
|
reports:
|
|
junit:
|
|
- frontend/app/coverage/integration-report-junit.xml
|
|
parallel:
|
|
matrix:
|
|
- BROWSER: chrome
|
|
- BROWSER: firefox
|
|
rules:
|
|
- !reference [.limit_pipelines, rules]
|