Ensure all challenges are completed when running Dashboard UI tests (… #2694
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
# Action for running tests | |
# This file has been automatically created. | |
# To recreate it you can run this command | |
# ./console generate:test-action --php-versions="7.2,8.2" | |
name: Matomo Tests | |
on: | |
pull_request: | |
types: [opened, synchronize] | |
push: | |
branches: | |
- '**.x-dev' | |
- 'next_release' | |
workflow_dispatch: | |
permissions: | |
actions: read | |
checks: none | |
contents: read | |
deployments: none | |
issues: read | |
packages: none | |
pull-requests: read | |
repository-projects: none | |
security-events: none | |
statuses: none | |
concurrency: | |
group: php-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
PHP: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
type: [ 'UnitTests', 'SystemTestsPlugins', 'SystemTestsCore', 'IntegrationTestsCore', 'IntegrationTestsPlugins' ] | |
php: [ '7.2', '8.2' ] | |
adapter: [ 'PDO_MYSQL', 'MYSQLI' ] | |
exclude: | |
- php: '7.2' | |
adapter: 'MYSQLI' | |
- php: '8.2' | |
adapter: 'PDO_MYSQL' | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: false | |
persist-credentials: false | |
submodules: true | |
path: matomo | |
- name: running tests | |
uses: matomo-org/github-action-tests@main | |
with: | |
test-type: ${{ matrix.type }} | |
mysql-driver: ${{ matrix.adapter }} | |
php-version: ${{ matrix.php }} | |
redis-service: true | |
artifacts-pass: ${{ secrets.ARTIFACTS_PASS }} | |
upload-artifacts: ${{ matrix.php == '7.2' }} | |
Javascript: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: false | |
persist-credentials: false | |
submodules: true | |
path: matomo | |
- name: running tests | |
uses: matomo-org/github-action-tests@main | |
with: | |
test-type: 'JS' | |
php-version: '7.2' | |
node-version: '12' | |
Client: | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 15 | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: false | |
persist-credentials: false | |
submodules: true | |
path: matomo | |
- name: running tests | |
uses: matomo-org/github-action-tests@main | |
with: | |
test-type: 'Client' | |
node-version: '16' | |
mysql-service: false | |
UI: | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
parts: [ 0,1,2,3 ] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
lfs: true | |
persist-credentials: false | |
submodules: true | |
path: matomo | |
- name: running tests | |
uses: matomo-org/github-action-tests@main | |
with: | |
ui-test-options: '--num-test-groups=4 --test-group=${{ matrix.parts }}' | |
test-type: 'UI' | |
php-version: '7.2' | |
node-version: '16' | |
redis-service: true | |
artifacts-pass: ${{ secrets.ARTIFACTS_PASS }} | |
upload-artifacts: true |