-
Notifications
You must be signed in to change notification settings - Fork 4
65 lines (62 loc) · 1.81 KB
/
drupal-integrations.yaml
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
name: Drupal test routine
on:
push:
branches:
- 'main'
- 'dev'
pull_request:
branches:
- 'main'
jobs:
composer-test-suite:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Composer install
run: |
composer install -n --prefer-dist
composer validate
- name: phpcs checks
run: |
/vendor/bin/phpcs
drupal-test-suite:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
repository: lagoon-examples/drupal-base
ref: main
- name: Report versions
run: |
docker version
docker compose version
node -v
yarn -v
- name: Update codebase to follow CI configuration
working-directory: drupal-base
run: |
composer config repositories.amazeeio/drupal_integrations '{"type": "vcs", "url": "http://github.com/amazeeio/drupal-integrations"}'
composer require --no-update amazeeio/drupal_integrations:dev-main
rm composer.lock
- name: Update codebase to follow CI configuration
working-directory: drupal-base
run: |
sed -i -e "/###/d" docker-compose.yml
- name: Pull all images
working-directory: drupal-base
run: |
docker compose pull --ignore-pull-failures
- name: Install test harness
working-directory: drupal-base
run: |
yarn add leia-parser mocha chai@4 command-line-test
- name: Generate test files
working-directory: drupal-base
run: |
yarn leia "TESTING*.md" test -r 2 -s 'Start up tests' -t 'Verification commands' -c 'Destroy tests' --split-file
- name: Run docker compose tests
working-directory: drupal-base
run: |
yarn mocha --timeout 900000 test/*compose*.func.js