-
Notifications
You must be signed in to change notification settings - Fork 149
86 lines (84 loc) · 3.5 KB
/
browser-tests.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
name: Browser tests
on:
push:
branches:
- master
- "[0-9]+.[0-9]+"
pull_request: ~
workflow_dispatch: ~
jobs:
kernel-rest-json:
name: "Kernel REST JSON tests"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--mode=behat --profile=rest --suite=fullJson --tags=~@broken --non-strict"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
kernel-rest-xml:
name: "Kernel Rest fullXML tests"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--mode=behat --profile=rest --suite=fullXml --tags=~@broken --non-strict"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
kernel-rest-core:
name: "Kernel Rest core tests"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--mode=behat --profile=core --tags=~@broken"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
behat:
name: "Behat"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--mode=behat --profile=behat --tags=~@broken"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
repository-forms:
name: "Repository Forms tests on Clean Platform"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--mode=behat --profile=repository-forms --tags=~@broken --non-strict"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
admin-ui:
name: "Admin UI on Clean Platform"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--profile=adminui --suite=adminui"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
admin-ui-varnish-redis-postgresql-php73:
name: "Admin UI on Clean Platform"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-suite: "--profile=adminui --suite=adminui"
add-as-dependency: false
php-image: "ezsystems/php:7.3-v2-node10"
setup: "doc/docker/base-dev.yml:doc/docker/varnish.yml:doc/docker/db-postgresql.yml:doc/docker/redis.yml:doc/docker/selenium.yml"
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
admin-ui-personas:
name: "Admin UI tests using different personas"
uses: ./.github/workflows/callable-browser-tests.yaml
with:
project-version: "dev-${{ github.head_ref }}"
test-setup-phase-1: "--profile=setup --suite=personas --tags=@setup"
test-suite: "--profile=adminui --suite=personas"
add-as-dependency: false
secrets:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}