From d390ddad31cb5f9f831e40a09f207c3b54c81084 Mon Sep 17 00:00:00 2001 From: Ryosuke Yabuki Date: Thu, 12 Dec 2024 13:25:28 +0900 Subject: [PATCH] add test_suite section --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d3250aa..9dc4f40 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ jobs: os: [ 'ubuntu-latest', 'windows-latest'] version: ['v1', 'v2'] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - name: Test @@ -63,7 +63,7 @@ If you use `actions/checkout`, set fetch-depth: 0 as shown in the example below. ```yaml steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 ``` @@ -120,5 +120,9 @@ Test session name that you can give to the value to [`--test-session-name`](http The value that you can give to the value to ['--flavor](https://www.launchableinc.com/docs/resources/cli-reference/#3500669-record-session) option to the `record session` command. e.g.) `os=linux, version=v1` (Optional) +### `test_suite` + +The value that you can give to the value to ['--test-suite](https://www.launchableinc.com/docs/resources/cli-reference/#3500669-record-session) option to the `record session` command. e.g.) `test_suite=e2e` (Optional) + # License Launchable data collection action is licensed under [Apache license](./LICENSE).