forked from PrestaShop/PrestaShop
-
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.
Merge pull request PrestaShop#29976 from Progi1984/dependabotUITests
Functional Tests : Fixes Dependabot (Remove assignees team / Fixes reviewers team)
- Loading branch information
Showing
5 changed files
with
7 additions
and
9 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
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 |
---|---|---|
|
@@ -2,14 +2,14 @@ name: PHP | |
on: [ push, pull_request ] | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
php-cs-fixer: | ||
permissions: | ||
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows | ||
contents: read # for actions/checkout to fetch code | ||
name: PHP CS Fixer | ||
runs-on: ubuntu-latest | ||
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}} | ||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|
@@ -45,13 +45,13 @@ jobs: | |
|
||
- name: Run ergebnis/composer-normalize | ||
run: composer normalize --dry-run --no-check-lock | ||
|
||
phpstan: | ||
permissions: | ||
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows | ||
contents: read # for actions/checkout to fetch code | ||
name: PHP Static Analysis | ||
runs-on: ubuntu-latest | ||
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}} | ||
strategy: | ||
matrix: | ||
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] | ||
|
@@ -89,13 +89,13 @@ jobs: | |
- name: Run phpstan | ||
run: ./vendor/bin/phpstan analyse -c phpstan.neon.dist | ||
|
||
phpunit: | ||
permissions: | ||
actions: write # for styfle/cancel-workflow-action to cancel/stop running workflows | ||
contents: read # for actions/checkout to fetch code | ||
name: PHPUnit | ||
runs-on: ubuntu-latest | ||
if: ${{ !startsWith(github.event.pull_request.title, 'Bump') && !endsWith(github.event.pull_request.title, 'in /tests/UI')}} | ||
strategy: | ||
matrix: | ||
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] | ||
|
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 |
---|---|---|
|
@@ -11,15 +11,13 @@ on: | |
- src/Adapter/Product/** | ||
- src/PrestaShopBundle/Resources/views/Admin/Sell/Catalog/Product/** | ||
jobs: | ||
|
||
sanity: | ||
runs-on: ubuntu-latest | ||
name: Sanity product V2 | ||
name: Sanity Product V2 | ||
strategy: | ||
matrix: | ||
php: [ '7.2', '7.3', '7.4', '8.0', '8.1' ] | ||
fail-fast: false | ||
|
||
steps: | ||
- name: Cancel Previous Runs | ||
uses: styfle/[email protected] | ||
|