diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1682d814c1..8bb0aaa4be 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -188,7 +188,7 @@ jobs: if: needs.changes.outputs.backend == 'true' runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[CE] API Integration (postgres, node: ${{ matrix.node }})' + name: '[CE] API Integration (postgres, node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' strategy: matrix: node: [16, 18, 20] @@ -228,7 +228,7 @@ jobs: if: needs.changes.outputs.backend == 'true' runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[CE] API Integration (mysql:latest, client: ${{ matrix.db_client }}, node: ${{ matrix.node }})' + name: '[CE] API Integration (mysql:latest, client: ${{ matrix.db_client }}, node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' strategy: matrix: node: [16, 18, 20] @@ -267,7 +267,7 @@ jobs: if: needs.changes.outputs.backend == 'true' runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[CE] API Integration (mysql:5, client: ${{ matrix.db_client }} , node: ${{ matrix.node }})' + name: '[CE] API Integration (mysql:5, client: ${{ matrix.db_client }} , node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' strategy: matrix: node: [16, 18, 20] @@ -305,7 +305,7 @@ jobs: if: needs.changes.outputs.backend == 'true' runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[CE] API Integration (sqlite, client: ${{ matrix.sqlite_pkg }}, node: ${{ matrix.node }})' + name: '[CE] API Integration (sqlite, client: ${{ matrix.sqlite_pkg }}, node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' strategy: matrix: node: [16, 18, 20] @@ -329,7 +329,7 @@ jobs: api_ee_pg: runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[EE] API Integration (postgres, node: ${{ matrix.node }})' + name: '[EE] API Integration (postgres, node: ${{ matrix.node }}, shard: ${{ matrix.shard }})' if: needs.changes.outputs.backend == 'true' && github.event.pull_request.head.repo.full_name == github.repository && !(github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]') env: STRAPI_LICENSE: ${{ secrets.strapiLicense }} @@ -372,7 +372,7 @@ jobs: api_ee_mysql: runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[EE] API Integration (mysql:latest, client: ${{ matrix.db_client }}, node: ${{ matrix.node }})' + name: '[EE] API Integration (mysql:latest, client: ${{ matrix.db_client }}, node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' if: needs.changes.outputs.backend == 'true' && github.event.pull_request.head.repo.full_name == github.repository && !(github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]') env: STRAPI_LICENSE: ${{ secrets.strapiLicense }} @@ -414,7 +414,7 @@ jobs: api_ee_sqlite: runs-on: ubuntu-latest needs: [changes, lint, typescript, unit_back, unit_front] - name: '[EE] API Integration (sqlite, client: ${{ matrix.sqlite_pkg }}, node: ${{ matrix.node }})' + name: '[EE] API Integration (sqlite, client: ${{ matrix.sqlite_pkg }}, node: ${{ matrix.node }}, shard: ${{ matrix.shard }}' if: needs.changes.outputs.backend == 'true' && github.event.pull_request.head.repo.full_name == github.repository && !(github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]') env: STRAPI_LICENSE: ${{ secrets.strapiLicense }}