https://github.com/depapp/free-katalon-studio-github-actions
https://github.com/depapp/free-katalon-studio-github-actions
Last synced: 12 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/depapp/free-katalon-studio-github-actions
- Owner: depapp
- Created: 2025-02-03T04:10:46.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-02-04T01:28:10.000Z (over 1 year ago)
- Last Synced: 2025-07-18T13:45:19.267Z (about 1 year ago)
- Language: JavaScript
- Size: 5.12 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Free Katalon Studio on Github Actions
Execute Katalon Studio project on Github Actions with No Cost
## Usage
```yaml
- uses: depapp/free-katalon-studio-github-actions@v2.8.4
with:
testSuitePath: 'Test Suites/Verify Operations'
browserType: 'Chrome'
executionProfile: 'default'
```
change the `testSuitePath`, `browserType`, `executionProfile` values to your own.
Github Actions configuration file example for https://github.com/katalon-studio-samples/calculator-bdd-tests project:
```yaml
name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
build:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Execute Katalon Studio project on Github Actions with No Cost
uses: depapp/free-katalon-studio-github-actions@v2.8.4
with:
testSuitePath: 'Test Suites/Verify Operations'
browserType: 'Chrome'
executionProfile: 'default'
- name: Build Katalon Reports as Artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: Katalon-Reports
path: Reports/
```