8000 Cleanup README Example by twistedpair · Pull Request #67 · mablhq/github-run-tests-action · GitHub
[go: up one dir, main page]

Skip to content

Cleanup README Example #67

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
with:
application-id: <your-application-id-a>
environment-id: <your-environment-id-e>
uri: <your-override-url>
app-url: <your-webapp-override-url>
mabl-branch: <your-mabl-branch-name>
# Runs for both browsers
browser-types: |
Expand Down Expand Up @@ -107,12 +107,12 @@ jobs:
types to test e.g. `chrome, firefox, webkit, edge`. If not
provided, mabl will test the browsers configured on the triggered test.
- `plan-labels` {string} (optional): comma or new line separated plan labels to test. Plans matching **any** label will be run. e.g. `smoke-test, beta-feature`. Note: additional selection criteria must also be met like application-id or environment-id, if supplied.
- `uri` {string} (optional, DEPRECATED - use app_url) the base uri to run browser based tests against. If provided, this will
override the default uri associated with the environment in mabl
- `app-url` {string} (optional) the base uri to run **Web Browser tests** against. If provided, this will
override the default web browser uri associated with the environment in mabl (note, this replaces `uri`, and will supersede the value in `uri` if both are provided)
- `api-url` {string} (optional) the base uri to run **API tests** against. If provided, this will
override the default API uri associated with the environment in mabl
- `uri` {string} (optional, DEPRECATED - use app_url) the base URL to run browser based tests against. If provided, this will
override the default URL associated with the environment in mabl
- `app-url` {string} (optional) the base URL to run **Web Browser tests** against. If provided, this will
override the default web browser URL associated with the environment in mabl (note, this replaces `uri`, and will supersede the value in `uri` if both are provided)
- `api-url` {string} (optional) the base URL to run **API tests** against. If provided, this will
override the default API URL associated with the environment in mabl
- `mabl-branch` {string} (optional) run tests on the mabl branch of tests with this name. Defaults to `master`.
- `http-headers` {string} (optional) Headers to add to all requests e.g. "My-Header:the-value" (comma or new line delimited).
- `rebaseline-images` {boolean} (optional) - Set `true` to reset the visual
Expand Down
AF3E
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ inputs:
required: false
app-url:
description: ^
'The base uri to run WEB BROWSER TESTS against. If provided, this will
override the default web browser uri associated with the environment in mabl (note, this replaces `uri`, and will override the value in `uri` if both are provided)'
'The base URL to run WEB BROWSER TESTS against. If provided, this will
override the default web browser URL associated with the environment in mabl (note, this replaces `uri`, and will override the value in `uri` if both are provided)'
required: false
api-url:
description: ^
'The base uri to run API TESTS against. If provided, this will
override the default API uri associated with the environment in mabl'
'The base URL to run API TESTS against. If provided, this will
override the default API URL associated with the environment in mabl'
required: false
mabl-branch:
description: ^
Expand Down
Loading
0