This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #3165625 by daniel.bosen, chr.fritsch: Node overwrites do not w…
…ork in combination with taxonoym overrides
- Loading branch information
Showing
23 changed files
with
772 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Run module tests | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- '**.md' | ||
|
||
schedule: | ||
- cron: '0 6 * * *' | ||
|
||
env: | ||
DRUPAL_TESTING_TEST_CODING_STYLES: false | ||
DRUPAL_TESTING_DATABASE_USER: root | ||
DRUPAL_TESTING_DATABASE_PASSWORD: root | ||
DRUPAL_TESTING_DATABASE_ENGINE: mysql | ||
DRUPAL_TESTING_DRUPAL_VERSION: '~8.8.0' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
PHP: ['7.3', '7.4'] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- uses: shivammathur/setup-php@v2 | ||
with: | ||
coverage: none | ||
php-version: ${{ matrix.PHP }} | ||
|
||
- name: Start MySql service | ||
run: sudo /etc/init.d/mysql start | ||
|
||
- name: Cache composer dependencies | ||
uses: actions/cache@v1 | ||
with: | ||
path: ~/.composer/cache | ||
key: ${{ runner.os }}-composer-cache-${{ hashFiles('**/composer.json') }} | ||
restore-keys: ${{ runner.os }}-composer-cache- | ||
|
||
- name: Get build environment | ||
run: composer global require thunder/drupal-testing | ||
|
||
- name: Run the tests | ||
run: test-drupal-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Check coding styles | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
eslint: | ||
name: runner / eslint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: eslint | ||
uses: reviewdog/action-eslint@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
|
||
phpcs: | ||
name: runner / phpcs | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
|
||
- name: phpcs | ||
uses: chrfritsch/action-drupal-coder@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
level: error | ||
|
||
misspell: | ||
name: runner / misspell | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: reviewdog/action-misspell@v1 | ||
with: | ||
github_token: ${{ secrets.github_token }} | ||
reporter: github-check | ||
level: warning | ||
locale: "US" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
tests/modules/ivw_integration_test/config/install/block.block.ivwcall.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
langcode: en | ||
status: true | ||
dependencies: | ||
module: | ||
- ivw_integration | ||
theme: | ||
- stark | ||
id: ivwcall | ||
theme: stark | ||
region: header | ||
weight: 0 | ||
provider: null | ||
plugin: ivw_integration_call_block | ||
settings: | ||
id: ivw_integration_call_block | ||
label: 'IVW call' | ||
provider: ivw_integration | ||
label_display: visible | ||
visibility: { } |
79 changes: 79 additions & 0 deletions
79
...es/ivw_integration_test/config/install/core.entity_form_display.node.ivw_test.default.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
langcode: en | ||
status: true | ||
dependencies: | ||
config: | ||
- field.field.node.ivw_test.field_a | ||
- field.field.node.ivw_test.field_ivw_settings | ||
- field.field.node.ivw_test.field_z | ||
- node.type.ivw_test | ||
module: | ||
- ivw_integration | ||
id: node.ivw_test.default | ||
targetEntityType: node | ||
bundle: ivw_test | ||
mode: default | ||
content: | ||
created: | ||
type: datetime_timestamp | ||
weight: 2 | ||
region: content | ||
settings: { } | ||
third_party_settings: { } | ||
field_a: | ||
weight: 26 | ||
settings: { } | ||
third_party_settings: { } | ||
type: options_select | ||
region: content | ||
field_ivw_settings: | ||
type: ivw_integration_widget | ||
weight: 6 | ||
region: content | ||
settings: { } | ||
third_party_settings: { } | ||
field_z: | ||
weight: 27 | ||
settings: { } | ||
third_party_settings: { } | ||
type: options_select | ||
region: content | ||
promote: | ||
type: boolean_checkbox | ||
settings: | ||
display_label: true | ||
weight: 3 | ||
region: content | ||
third_party_settings: { } | ||
status: | ||
type: boolean_checkbox | ||
settings: | ||
display_label: true | ||
weight: 5 | ||
region: content | ||
third_party_settings: { } | ||
sticky: | ||
type: boolean_checkbox | ||
settings: | ||
display_label: true | ||
weight: 4 | ||
region: content | ||
third_party_settings: { } | ||
title: | ||
type: string_textfield | ||
weight: 0 | ||
region: content | ||
settings: | ||
size: 60 | ||
placeholder: '' | ||
third_party_settings: { } | ||
uid: | ||
type: entity_reference_autocomplete | ||
weight: 1 | ||
settings: | ||
match_operator: CONTAINS | ||
size: 60 | ||
placeholder: '' | ||
match_limit: 10 | ||
region: content | ||
third_party_settings: { } | ||
hidden: { } |
Oops, something went wrong.