-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/GH-420
- Loading branch information
Showing
13 changed files
with
91 additions
and
72 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
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 |
---|---|---|
@@ -1,52 +1,15 @@ | ||
# Link to ticket: | ||
## Ticket QAG-XXX | ||
|
||
[Add link to ticket] (if automatic linking is not used) | ||
## Changes | ||
|
||
# Changes proposed in this PR: | ||
- [Explain what changes were made in this PR] | ||
|
||
[Explain what was done and why. You can also add screenshots here if it helps.] | ||
## Testing | ||
|
||
# How to test | ||
Enviroment: [Feature environment URL] | ||
|
||
## Testing in feature environment: | ||
Login: [`drush uli` command] | ||
|
||
[Add link to feature environment] | ||
https://[BRANCH-NAME].[PROJECT-NAME].dev.wdr.io/ | ||
Instructions: | ||
|
||
[Add command how to get admin login url to the feature environment] | ||
`ssh www-admin@[BRANCH-name]-shell.[PROJECT-NAME] -J [email protected] "drush uli"` | ||
|
||
## Local testing | ||
|
||
_Detail custom setup instructions if any - any drush commands, content reindexing, specific user to use, etc._ | ||
|
||
git fetch && git checkout <branch> | ||
lando composer install | ||
lando drush cim -y | ||
lando drush cr | ||
|
||
## Testing steps | ||
|
||
_Testing scenario goes here._ | ||
|
||
1. Do this. | ||
2. Go there. | ||
3. Validate that xyz is working. | ||
|
||
# Best practices: | ||
|
||
<details> | ||
<summary><h3>Accessibility:</h3></summary> | ||
<p> | ||
This project must support WCAG accessibility level AA <em>(edit this according to the requirements of your project)</em>. To ensure this standard is met, remember to: | ||
|
||
- Perform automated checks using a tool such as Wave or SiteImprove. | ||
- Test keyboard navigation: are all parts of the UI navigable using only the keyboard? Is the tab order logical? Can popups, menus etc be dismissed with the escape key? | ||
- Test responsiveness, scaling and text reflow. | ||
- Make sure no accessibility issues exist on either desktop or mobile views. | ||
- If you have time, test with a screen reader such as VoiceOver (macOS), NVDA (Windows), or Orca (Linux). | ||
|
||
Use the [Accessibility Testing Cheat Sheet](https://intra.wunder.io/info/accessibility-group/accessibility-testing-cheat-sheet) for information on how to run these tests. | ||
|
||
</p> | ||
</details> | ||
- [Step by step instructions to test the changes] |
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 |
---|---|---|
|
@@ -40,3 +40,6 @@ | |
|
||
# Ignore node modules | ||
node_modules | ||
|
||
# Ignore Lando data volumes | ||
/.lando/data-* |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
## Description: run the Drupal core script with provided arguments | ||
## Usage: drupal <arguments> | ||
## Example: lando drupal generate-theme my-theme | ||
|
||
cd ${LANDO_WEBROOT} | ||
|
||
php core/scripts/drupal "$@" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Dockerfile for the Nginx container. | ||
FROM wunderio/silta-nginx:1.24-v1 | ||
FROM wunderio/silta-nginx:1.26-v1 | ||
|
||
COPY . /app/web |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Dockerfile for the Shell container. | ||
FROM wunderio/silta-php-shell:php8.2-v1 | ||
FROM wunderio/silta-php-shell:php8.3-v1 | ||
|
||
COPY --chown=www-data:www-data . /app |
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