-
Notifications
You must be signed in to change notification settings - Fork 26
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 #55 from FLUX-SE/stripe-js-with-api
Stripe JS gateway and Sylius API support
- Loading branch information
Showing
118 changed files
with
2,357 additions
and
537 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 |
---|---|---|
|
@@ -28,12 +28,12 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [ 8.1 ] | ||
symfony: [ ^5.4, ^6.4 ] | ||
php: [ "8.1" ] | ||
symfony: [ "^5.4", "^6.4" ] | ||
|
||
steps: | ||
- | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- | ||
name: Setup PHP | ||
|
@@ -58,7 +58,7 @@ jobs: | |
|
||
- | ||
name: Cache Composer | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-symfony-${{ matrix.symfony }}-composer-${{ hashFiles('**/composer.json') }} | ||
|
@@ -88,7 +88,7 @@ jobs: | |
|
||
- | ||
name: Run ECS | ||
run: vendor/bin/ecs check src | ||
run: vendor/bin/ecs check | ||
if: always() && steps.end-of-setup.outcome == 'success' | ||
|
||
- | ||
|
@@ -108,39 +108,33 @@ jobs: | |
strategy: | ||
fail-fast: false | ||
matrix: | ||
php: [7.4, 8.0, 8.1, 8.2, 8.3] | ||
symfony: [^5.4, ^6.4] | ||
sylius: [~1.10.0, ~1.11.0, ~1.12.0] | ||
node: [18.x] | ||
mysql: [5.7] | ||
php: ["8.0", "8.1", "8.2", "8.3"] | ||
symfony: ["^5.4", "^6.4"] | ||
sylius: ["~1.12.0", "~1.13.0"] | ||
node: ["20.x"] | ||
mysql: ["8.0"] | ||
|
||
exclude: | ||
- | ||
sylius: ~1.10.0 | ||
symfony: ^6.4 | ||
sylius: "~1.12.0" | ||
php: "7.4" | ||
- | ||
sylius: ~1.11.0 | ||
php: 7.4 | ||
sylius: "~1.13.0" | ||
php: "7.4" | ||
- | ||
sylius: ~1.11.0 | ||
symfony: ^6.4 | ||
sylius: "~1.13.0" | ||
php: "8.0" | ||
- | ||
sylius: ~1.12.0 | ||
php: 7.4 | ||
- | ||
php: 7.4 | ||
symfony: ^6.4 | ||
- | ||
php: 8.0 | ||
symfony: ^6.4 | ||
php: "8.0" | ||
symfony: "^6.4" | ||
|
||
env: | ||
APP_ENV: test | ||
DATABASE_URL: "mysql://root:[email protected]/sylius?serverVersion=${{ matrix.mysql }}" | ||
|
||
steps: | ||
- | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
|
||
- | ||
name: Setup PHP | ||
|
@@ -153,7 +147,7 @@ jobs: | |
|
||
- | ||
name: Setup Node | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: "${{ matrix.node }}" | ||
|
||
|
@@ -180,63 +174,54 @@ jobs: | |
name: Run webserver | ||
run: (cd tests/Application && symfony server:start --port=8080 --dir=public --daemon) | ||
|
||
- | ||
name: Run Chrome Headless | ||
run: google-chrome-stable --enable-automation --disable-background-networking --no-default-browser-check --no-first-run --disable-popup-blocking --disable-default-apps --allow-insecure-localhost --disable-features=Translate --disable-extensions --no-sandbox --enable-features=Metal --headless --remote-debugging-port=9222 --window-size=2880,1800 https://127.0.0.1 > /dev/null 2>&1 & | ||
|
||
- | ||
name: Get Composer cache directory | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
id: composer-cache | ||
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT | ||
|
||
- | ||
name: Cache Composer | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.composer-cache.outputs.dir }} | ||
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }} | ||
restore-keys: | | ||
${{ runner.os }}-php-${{ matrix.php }}-composer- | ||
- | ||
name: Configure global composer | ||
if: matrix.symfony != '' | ||
run: composer global config --no-plugins allow-plugins.symfony/flex true | ||
|
||
- | ||
name: Restrict Sylius version | ||
if: matrix.sylius != '' | ||
run: composer require "sylius/sylius:${{ matrix.sylius }}" --no-update --no-scripts --no-interaction | ||
|
||
- | ||
name: Fix build on Sylius 1.10 | ||
if: matrix.sylius == '~1.10.0' | ||
run: | | ||
composer require "nyholm/psr7" --no-update --no-scripts --no-interaction | ||
- | ||
name: Fix build on Sylius 1.11 | ||
if: matrix.sylius == '~1.11.0' | ||
run: | | ||
composer require "nyholm/psr7" --no-update --no-scripts --no-interaction | ||
- | ||
name: Fix build with PHP 8.3 | ||
if: matrix.php == '8.3' | ||
run: | | ||
composer remove --dev "phpspec/phpspec" --no-update --no-scripts --no-interaction | ||
- | ||
name: Fix build with Symfony ^5.4 | ||
if: matrix.symfony == '^5.4' | ||
run: | | ||
composer require --dev "doctrine/annotations:^1.14" --no-update --no-scripts --no-interaction | ||
- | ||
name: Install PHP dependencies | ||
run: composer install --no-interaction | ||
env: | ||
SYMFONY_REQUIRE: ${{ matrix.symfony }} | ||
|
||
- | ||
name: Install Behat driver | ||
run: vendor/bin/bdi browser:google-chrome drivers | ||
|
||
- | ||
name: Get Yarn cache directory | ||
id: yarn-cache | ||
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT | ||
|
||
- | ||
name: Cache Yarn | ||
uses: actions/cache@v3 | ||
uses: actions/cache@v4 | ||
with: | ||
path: ${{ steps.yarn-cache.outputs.dir }} | ||
key: ${{ runner.os }}-node-${{ matrix.node }}-yarn-${{ hashFiles('**/package.json **/yarn.lock') }} | ||
|
@@ -257,14 +242,26 @@ jobs: | |
name: Prepare test application assets | ||
run: | | ||
(cd tests/Application && bin/console assets:install public -vvv) | ||
(cd tests/Application && yarn build) | ||
(cd tests/Application && yarn build:prod) | ||
- | ||
name: Prepare test application cache | ||
run: (cd tests/Application && bin/console cache:warmup -vvv) | ||
|
||
- | ||
name: Load fixtures in test application | ||
run: (cd tests/Application && bin/console sylius:fixtures:load -n) | ||
- | ||
name: Validate composer.json | ||
run: composer validate --ansi --strict | ||
|
||
- | ||
name: Validate database schema | ||
run: (cd tests/Application && bin/console doctrine:schema:validate) | ||
|
||
- | ||
name: Run security check | ||
run: symfony security:check | ||
|
||
- | ||
name: Run PHPUnit | ||
|
@@ -276,9 +273,11 @@ jobs: | |
|
||
- | ||
name: Upload Behat logs | ||
uses: codecov/codecov-action@v3 | ||
uses: actions/upload-artifact@v4 | ||
if: failure() | ||
with: | ||
name: Behat logs | ||
path: etc/build/ | ||
name: Logs for Sylius ${{ matrix.sylius }}, PHP ${{ matrix.php }}, Symfony ${{ matrix.symfony }}, MySQL ${{ matrix.mysql }} | ||
path: | | ||
etc/build/ | ||
tests/Application/var/log | ||
if-no-files-found: ignore |
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
Oops, something went wrong.