-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #989 from mollie/release-6.2.4
Release 6.2.4
- Loading branch information
Showing
11 changed files
with
122 additions
and
16 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,14 @@ | ||
<!----------------------------------------------------------------------------- | ||
Thank you for contributing to the project! | ||
Please take the time to edit the "Answers" rows below with the necessary information. | ||
------------------------------------------------------------------------------> | ||
|
||
| Questions | Answers | ||
|-----------------| ------------------------------------------------------- | ||
| Branch? | Master/Release | ||
| Description? | Please be specific when describing the PR. <br> Every detail helps: versions, browser/server configuration, specific module/theme, etc. Feel free to add more information below this table. | ||
| Type? | bug fix / improvement / new feature / refactoring | ||
| How to test? | Indicate how to verify that this change works as expected. | ||
| Fixed issue ? | If none leave blank |
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,40 @@ | ||
name: Create module ZIP | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
prepare-zip: | ||
name: Prepare module ZIP artifact | ||
runs-on: ubuntu-latest | ||
env: | ||
MODULE_NAME: mollie | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Build module ZIP | ||
run: | | ||
composer install --no-dev --optimize-autoloader --classmap-authoritative | ||
composer dump-autoload --no-dev --optimize --classmap-authoritative | ||
cp .github/.htaccess vendor/.htaccess | ||
rm -rf .git .docker .editorconfig .github tests .php-cs-fixer.php Makefile cypress .docker cypress.config.js cypress.env.json docker-compose*.yml .gitignore bin codeception.yml package-lock.json package.json .php_cs.dist .php-cs-fixer.dist .php-cs-fixer.dist.php | ||
mv .env.dist .env | ||
mkdir ${{ env.MODULE_NAME }} | ||
rsync -Rr ./ ./${{ env.MODULE_NAME }} | ||
shopt -s extglob | ||
rm -r !(${{ env.MODULE_NAME }}) | ||
find . -maxdepth 1 -type f -exec rm "{}" \; | ||
cd ${{ env.MODULE_NAME }} && rm -rf ${{ env.MODULE_NAME }} | ||
- name: Upload artifact | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: ${{ env.MODULE_NAME }} | ||
path: ./ |
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
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 |
---|---|---|
|
@@ -161,8 +161,6 @@ it('C339391: 56 Przelewy24 Checkouting [Payments API]', () => { | |
cy.contains('Przelewy24').click({force:true}) | ||
cy.get('.condition-label > .js-terms').click({force:true}) | ||
cy.contains('Place order').click() | ||
cy.get('.input-float > input').type('[email protected]') | ||
cy.get('[class="button form__button"]').click() | ||
cy.get('[value="paid"]').click() | ||
cy.get('[class="button form__button"]').click() | ||
cy.get('#content-hook_order_confirmation > .card-block').should('be.visible') | ||
|
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