Compare commits
4 commits
esb-deploy
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 3bb1e92d8b | |||
| 298cf5c375 | |||
| 268081b28b | |||
| 9783972537 |
3 changed files with 55 additions and 4 deletions
|
|
@ -94,6 +94,7 @@ runs:
|
|||
env:
|
||||
VERIFY_GOALS: ${{ inputs.verify-goals }}
|
||||
EXTRA_ARGS: ${{ inputs.extra-args }}
|
||||
MAVEN_PROFILE: ${{ inputs.maven-profile }}
|
||||
run: |
|
||||
mvn --batch-mode $VERIFY_GOALS \
|
||||
-s /tmp/maven-settings.xml \
|
||||
|
|
|
|||
|
|
@ -12,18 +12,47 @@ Run Playwright E2E tests for one shard and upload the blob report as an artifact
|
|||
| `jfrog-token` | No | `""` | JFrog npm auth token |
|
||||
| `shard-index` | No | `1` | Current shard index (1-based). Set to `1` when not sharding. |
|
||||
| `shard-total` | No | `1` | Total number of shards. Set to `1` to disable sharding. |
|
||||
| `no-deps` | No | `false` | Skip dependencies between Playwright projects (e.g. setup/teardown). Passes `--no-deps` to Playwright. |
|
||||
| `projects` | No | `""` | Comma-separated list of Playwright projects to run (e.g. `chromium,firefox,Mobile Chrome`). Leave empty to use the Playwright default. |
|
||||
| `artifact-retention-days` | No | `3` | Number of days to retain the blob report artifact |
|
||||
|
||||
## Usage
|
||||
|
||||
### Basic
|
||||
|
||||
```yaml
|
||||
- uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/playwright-run@playwright-run-v1
|
||||
with:
|
||||
working-directory: frontend
|
||||
working-directory: e2e
|
||||
node-version: 22
|
||||
jfrog-token: ${{ secrets.JFROG_TOKEN }}
|
||||
shard-index: ${{ matrix.shard-index }}
|
||||
shard-total: 5
|
||||
```
|
||||
|
||||
### Sharded
|
||||
|
||||
```yaml
|
||||
jobs:
|
||||
test:
|
||||
name: "Test Shard ${{ matrix.shard-index }}/${{ matrix.total }}"
|
||||
# Define the matrix strategy on the parent job:
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
total: [5] # The same for all instances
|
||||
shard-index: [1, 2, 3, 4, 5]
|
||||
steps:
|
||||
# ...other steps like checkout repo etc.
|
||||
- name: Run tests
|
||||
uses: https://schmalz-git.git.onstackit.cloud/schmalz/shared-actions/playwright-run@playwright-run-v1
|
||||
with:
|
||||
working-directory: frontend
|
||||
node-version: 22
|
||||
jfrog-token: ${{ secrets.JFROG_TOKEN }}
|
||||
# Matrix data is passed here:
|
||||
shard-index: ${{ matrix.shard-index }}
|
||||
shard-total: ${{ matrix.total }}
|
||||
no-deps: "true"
|
||||
projects: "chromium,firefox,webkit,Mobile Chrome,Mobile Safari"
|
||||
```
|
||||
|
||||
## Notes
|
||||
|
|
|
|||
|
|
@ -29,6 +29,14 @@ inputs:
|
|||
description: Total number of shards. Set to 1 to disable sharding.
|
||||
required: false
|
||||
default: "1"
|
||||
no-deps:
|
||||
description: Whether to ignore dependencies between Playwright projects (e.g. setup, teardown)
|
||||
required: false
|
||||
default: false
|
||||
projects:
|
||||
description: Comma-separated list of Playwright projects to include, leave empty to use the Playwright default
|
||||
required: false
|
||||
default: ""
|
||||
artifact-retention-days:
|
||||
description: Number of days to retain the blob report artifact
|
||||
required: false
|
||||
|
|
@ -70,12 +78,25 @@ runs:
|
|||
WORKING_DIR: ${{ inputs.working-directory }}
|
||||
SHARD_INDEX: ${{ inputs.shard-index }}
|
||||
SHARD_TOTAL: ${{ inputs.shard-total }}
|
||||
NO_DEPS: ${{ inputs.no-deps }}
|
||||
PROJECTS: ${{ inputs.projects }}
|
||||
run: |
|
||||
SHARD_ARG=""
|
||||
if [ "${SHARD_TOTAL}" != "1" ]; then
|
||||
SHARD_ARG="--shard=${SHARD_INDEX}/${SHARD_TOTAL}"
|
||||
fi
|
||||
pnpm --prefix="${WORKING_DIR}" exec playwright test ${SHARD_ARG} --reporter=blob,dot
|
||||
NO_DEPS_ARG=""
|
||||
if [ "${NO_DEPS}" == "true" ]; then
|
||||
NO_DEPS_ARG="--no-deps"
|
||||
fi
|
||||
PROJECTS_ARG=()
|
||||
if [ -n "${PROJECTS}" ]; then
|
||||
IFS=',' read -ra PROJECT_LIST <<< "${PROJECTS}"
|
||||
for project in "${PROJECT_LIST[@]}"; do
|
||||
PROJECTS_ARG+=("--project=${project}")
|
||||
done
|
||||
fi
|
||||
pnpm --prefix="${WORKING_DIR}" exec playwright test ${SHARD_ARG} ${NO_DEPS_ARG} "${PROJECTS_ARG[@]}" --reporter=blob,dot
|
||||
|
||||
- name: Upload blob report
|
||||
if: ${{ !cancelled() }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue