2020-04-08 14:13:33 +05:30
|
|
|
# Read more about the feature here: https://docs.gitlab.com/ee/user/project/merge_requests/accessibility_testing.html
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- build
|
|
|
|
- test
|
|
|
|
- deploy
|
|
|
|
- accessibility
|
|
|
|
|
|
|
|
a11y:
|
|
|
|
stage: accessibility
|
2020-05-24 23:13:21 +05:30
|
|
|
image: registry.gitlab.com/gitlab-org/ci-cd/accessibility:5.3.0-gitlab.3
|
2020-04-08 14:13:33 +05:30
|
|
|
script: /gitlab-accessibility.sh $a11y_urls
|
|
|
|
allow_failure: true
|
|
|
|
artifacts:
|
|
|
|
when: always
|
|
|
|
expose_as: 'Accessibility Reports'
|
|
|
|
paths: ['reports/']
|
2020-05-24 23:13:21 +05:30
|
|
|
reports:
|
|
|
|
accessibility: reports/gl-accessibility.json
|
2020-04-08 14:13:33 +05:30
|
|
|
rules:
|
|
|
|
- if: $a11y_urls
|