diff --git a/.github/workflows/kre.yml b/.github/workflows/kre.yml index 6d75975..65a13fc 100644 --- a/.github/workflows/kre.yml +++ b/.github/workflows/kre.yml @@ -25,6 +25,8 @@ jobs: # version: '7.8.1' # projectPath: '${{ github.workspace }}' # args: '-noSplash -retry=0 -browserType=Chrome -statusDelay=20 -testSuitePath="Test Suites/New Test Suite" -apiKey=${{ secrets.SECRET_KEY }} --config -webui.autoUpdateDrivers=true' + - name: Checkout + uses: actions/checkout@v2 - name: Install docker # Taken from https://github.com/actions/virtual-environments/issues/1143#issuecomment-652264388 run: | brew install docker @@ -36,4 +38,4 @@ jobs: ls -al - name: Katalon Run 1 - run: 'docker run -t --rm -v "$(pwd)":/tmp/project katalonstudio/katalon:test katalonc.sh -projectPath=/ -noSplash -testSuitePath="Test Suites/New Test Suite" -apiKey=${{ secrets.SECRET_KEY }} -browserType="Edge Chromium" --config -webui.autoUpdateDrivers=true' + run: 'docker run -t --rm -v "$(pwd)":/tmp/project katalonstudio/katalon:test katalonc.sh -projectPath=/tmp/project -noSplash -testSuitePath="Test Suites/New Test Suite" -apiKey=${{ secrets.SECRET_KEY }} -browserType="Edge Chromium" --config -webui.autoUpdateDrivers=true'