File tree Expand file tree Collapse file tree 2 files changed +16
-9
lines changed
modules/next/modules/next_jsonapi/tests/src/Kernel/Controller Expand file tree Collapse file tree 2 files changed +16
-9
lines changed Original file line number Diff line number Diff line change @@ -13,13 +13,19 @@ jobs:
13
13
strategy :
14
14
matrix :
15
15
# Supported PHP versions: https://www.drupal.org/docs/getting-started/system-requirements/php-requirements
16
- php : ["8.1", "8.2", "8.3"]
16
+ php :
17
+ - " 8.1"
18
+ - " 8.2"
19
+ - " 8.3"
17
20
# Supported Drupal versions: https://www.drupal.org/project/drupal
18
- drupal : ["10.0", "10.1"]
21
+ drupal :
22
+ - " 10.0.x"
23
+ - " 10.1.x"
24
+ - " 10.2.x@RC"
19
25
exclude :
20
- - drupal : " 10.0"
26
+ - drupal : " 10.0.x "
21
27
php : " 8.3"
22
- - drupal : " 10.1"
28
+ - drupal : " 10.1.x "
23
29
php : " 8.3"
24
30
name : Drupal ${{ matrix.drupal }} - PHP ${{ matrix.php }}
25
31
services :
53
59
run : echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
54
60
- name : Setup Drupal
55
61
run : |
56
- COMPOSER_MEMORY_LIMIT=-1 composer create-project drupal/recommended-project:${{ matrix.drupal }}.x ~/drupal --no-interaction --no-install
62
+ COMPOSER_MEMORY_LIMIT=-1 composer create-project drupal/recommended-project:${{ matrix.drupal }} ~/drupal --no-interaction --no-install
57
63
cd ~/drupal
58
64
composer config extra.enable-patching true
59
65
composer config extra.compile-mode all
Original file line number Diff line number Diff line change @@ -24,15 +24,16 @@ class EntityResourceTest extends KernelTestBase {
24
24
* {@inheritdoc}
25
25
*/
26
26
protected static $ modules = [
27
+ 'field ' ,
28
+ 'file ' ,
27
29
'filter ' ,
30
+ 'jsonapi ' ,
28
31
'next ' ,
29
32
'node ' ,
30
- 'field ' ,
31
- 'system ' ,
32
- 'user ' ,
33
- 'jsonapi ' ,
34
33
'path ' ,
35
34
'serialization ' ,
35
+ 'system ' ,
36
+ 'user ' ,
36
37
];
37
38
38
39
/**
You can’t perform that action at this time.
0 commit comments